Function fitsInTwosComp [src]
Prototype
pub fn fitsInTwosComp(self: Managed, signedness: Signedness, bit_count: usize) bool
Parameters
self: Managed
signedness: Signedness
bit_count: usize
Source
pub fn fitsInTwosComp(self: Managed, signedness: Signedness, bit_count: usize) bool {
return self.toConst().fitsInTwosComp(signedness, bit_count);
}