bit-string 0.3.0

A compact owned bit string type with editing, matching, and bitwise operations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![no_std]

extern crate alloc;

pub(crate) const WORD_BITS: usize = u64::BITS as usize;

mod bit_string;

pub use bit_string::BitString;

pub use bit_string::errors::*;