This crate provides input types for nom parser combinators using bitvec. With those, you can use common nom combinators directly on streams of bits.
```rust
let data = [0xA5u8, 0x69, 0xF0, 0xC3];
let bits = data.view_bits::
fn parser(bits: &BitSlice
assert_eq!(parser(bits), Ok((&bits[..4], &bits[4..]))); ```