//! Implements bit matrices.
extern crate bit_vec;
extern crate serde;
pub use BitMatrix;
/// A value for borrowing.
pub static TRUE: bool = true;
/// A value for borrowing.
pub static FALSE: bool = false;
/// The number of bits in a block.
pub const BITS: usize = 32;
/// The type for storing bits.
pub type Block = u32;