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