Function calcNonZeroTwosCompLimbCount [src]
Compute the number of limbs required to store a 2s-complement number of bit_count bits.
Prototype
pub fn calcNonZeroTwosCompLimbCount(bit_count: usize) usize
Parameters
bit_count: usize
Source
pub fn calcNonZeroTwosCompLimbCount(bit_count: usize) usize {
assert(bit_count != 0);
return calcTwosCompLimbCount(bit_count);
}