onecodex / mmap-bitvec

Rust implementation of a mmap-based bit vector
MIT License
6 stars 0 forks source link

Add `get_range`/`set_range` methods for retrieving updating byte slices #3

Closed bovee closed 7 years ago

bovee commented 7 years ago

We have an API for reading or writing an unaligned u64 into the BitVec, but it would be useful to handle larger chunks (even if we don't get as good performance because we have to allocate back and forth).

bovee commented 7 years ago

This is now supported (and was rebased into the initial commit).