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