BitCursor is similar to std::io::Cursor, but allows reading various amounts of bits from a given buffer in addition to byte-sized chunks. It's built on top of the ux crate for types.
```rust
let data: Vec
asserteq!(cursor.bitread::
It also supports seeking via BitSeek
, which is similar to Seek
:
```rust
let data: Vec
asserteq!((1, 0), cursor.seek(BitSeekFrom::Start(1, 0)).unwrap());
asserteq!(cursor.bit_read::
asserteq!((0, 3), cursor.seek(BitSeekFrom::Current(0, -6)).unwrap());
asserteq!(cursor.bit_read::
asserteq!((0, 3), cursor.seek(BitSeekFrom::End(0, -4)).unwrap());
asserteq!(cursor.bit_read::