2 comments

[ 6.4 ms ] story [ 85.6 ms ] thread
So after reading a link from here from yesterday I decided to make my own implementation for checking evenness of numbers, and making it more optimized.
I don't see (C) the joke.

  inline bool isEven(int32_t x) { return (0 == (x & 1) ); }