Function bitCountAbs [src]
Returns the number of bits required to represent the absolute value of an integer.
Prototype
pub fn bitCountAbs(self: Managed) usize Parameters
self: Managed Source
pub fn bitCountAbs(self: Managed) usize {
return self.toConst().bitCountAbs();
}