widebits 0.0.1

An experimental bit sequence library with bitwise operations and SIMD acceleration.
Documentation
1
2
3
4
5
6
7
8
9
mod from_to_words;
mod ones;
mod zeros;

#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum ConstructionError {
    /// words 不足以容纳 len bit
    InsufficientWords { required: usize, provided: usize },
}