bitstr 0.1.2

BitStr is a contiguous sequence of bits in memory
Documentation
1
2
3
4
5
6
use bitstr::BitStr;

fn main() {
    let str_bitstr: &BitStr = BitStr::from(b"Rio");
    str_bitstr.contains_u8(4);
}