pub struct UnalignedBitChunk<'a> {
lead_padding: usize,
trailing_padding: usize,
prefix: Option<u64>,
chunks: &'a [u64],
suffix: Option<u64>,
}
Expand description
Iterates over an arbitrarily aligned byte buffer
Yields an iterator of aligned u64, along with the leading and trailing u64 necessary to align the buffer to a 8-byte boundary
This is unlike BitChunkIterator
which only exposes a trailing u64,
and consequently has to perform more work for each read
Fields§
§lead_padding: usize
§trailing_padding: usize
§prefix: Option<u64>
§chunks: &'a [u64]
§suffix: Option<u64>
Implementations§
Source§impl<'a> UnalignedBitChunk<'a>
impl<'a> UnalignedBitChunk<'a>
Sourcepub fn new(buffer: &'a [u8], offset: usize, len: usize) -> Self
pub fn new(buffer: &'a [u8], offset: usize, len: usize) -> Self
Create a from a byte array, and and an offset and length in bits
Sourcepub fn lead_padding(&self) -> usize
pub fn lead_padding(&self) -> usize
Returns the number of leading padding bits
Sourcepub fn trailing_padding(&self) -> usize
pub fn trailing_padding(&self) -> usize
Returns the number of trailing padding bits
Sourcepub fn iter(&self) -> UnalignedBitChunkIterator<'a>
pub fn iter(&self) -> UnalignedBitChunkIterator<'a>
Returns an iterator over the chunks
Sourcepub fn count_ones(&self) -> usize
pub fn count_ones(&self) -> usize
Counts the number of ones
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for UnalignedBitChunk<'a>
impl<'a> RefUnwindSafe for UnalignedBitChunk<'a>
impl<'a> Send for UnalignedBitChunk<'a>
impl<'a> Sync for UnalignedBitChunk<'a>
impl<'a> Unpin for UnalignedBitChunk<'a>
impl<'a> UnwindSafe for UnalignedBitChunk<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more