popCount method

int popCount(
  1. int bit
)

Count bit.

Implementation

int popCount(final int bit) => _bindings.bit_count(bit);