pub type BitI128<const N: u32> = BitInt<i128, N>;
Expand description
A specialized BitInt
type whose the underlying type is restricted to
i128
.
The largest size of N
is equal to i128::BITS
.
Aliased Typeยง
pub struct BitI128<const N: u32>(/* private fields */);