contains/
contains_u8.rs

1use bitstr::BitStr;
2
3fn main() {
4    let str_bitstr: &BitStr = BitStr::from(b"Rio");
5    str_bitstr.contains_u8(4);
6}