Type Alias BitUsize

Source
pub type BitUsize<const N: u32> = BitUint<usize, N>;
Expand description

A specialized BitUint type whose the underlying type is restricted to usize.

The largest size of N is equal to usize::BITS.

Aliased Typeยง

struct BitUsize<const N: u32>(/* private fields */);