1 2 3 4 5 6
//! Defines a building block for the bit slice. /// The number of bits in a block. pub const BITS: usize = 32; /// The type for storing bits. pub type Block = u32;