fxbit_count(fx)
Return the number of bits set in the two's complement representation of the fixnum fx
.
For negative inputs, fxbit_count
will return a negative number whose magnitude is one greater
than the number of bits not set in fx
.
fxbit_count(5)
// 2
fxbit_count(-5)
// -2