bit-string 0.4.1

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

extern crate alloc;

mod consts_for_bits;
mod funcs_for_bits;

pub(crate) use consts_for_bits::*;
pub(crate) use funcs_for_bits::*;

mod bit_string;

pub use bit_string::BitString;

pub use bit_string::errors::*;