pub mod bitset;
pub mod bitset128;
pub mod bitset16;
pub mod bitset32;
pub mod bitset64;
pub mod bitset8;
pub mod byteset;
pub mod bit;
pub mod error;
pub mod index;
pub mod safety_markers;
pub mod prelude {
use super::*;
pub use bit::Bit::{self, One, Zero};
pub use bitset::Bitset;
pub use bitset128::Bitset128;
pub use bitset16::Bitset16;
pub use bitset32::Bitset32;
pub use bitset64::Bitset64;
pub use bitset8::Bitset8;
pub use byteset::Byteset;
pub use index::Index;
pub type Index8 = Index<Bitset8>;
pub type Index16 = Index<Bitset16>;
pub type Index32 = Index<Bitset32>;
pub type Index64 = Index<Bitset64>;
pub type Index128 = Index<Bitset128>;
}