Function tanton::core::bit_twiddles::popcount64
source · Expand description
Counts the number of bits
Examples
use tanton::core::bit_twiddles::*;
assert_eq!(popcount64(0b1001), 2);
Counts the number of bits
use tanton::core::bit_twiddles::*;
assert_eq!(popcount64(0b1001), 2);