Skip to main content

bit_string/
lib.rs

1#![no_std]
2
3extern crate alloc;
4
5pub(crate) const WORD_BITS: usize = u64::BITS as usize;
6
7mod bit_string;
8
9pub use bit_string::BitString;
10
11pub use bit_string::errors::*;