bitCount method

int bitCount()

Returns number of one-bits.

NOTE: in JS is safe to use with up to 53 bits. See int.

Implementation

int bitCount() {
  return _impl.bitCount(this);
}