pub fn count_bits(input: u64) -> u32
Expand description

Count bits required to represent an unsigned number. Inspired by and similar to BigInteger’s bits() method.