Struct arrow::util::bit_chunk_iterator::UnalignedBitChunk
source · pub struct UnalignedBitChunk<'a> { /* private fields */ }
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
Implementations§
source§impl<'a> UnalignedBitChunk<'a>
impl<'a> UnalignedBitChunk<'a>
sourcepub fn new(buffer: &'a [u8], offset: usize, len: usize) -> UnalignedBitChunk<'a>
pub fn new(buffer: &'a [u8], offset: usize, len: usize) -> UnalignedBitChunk<'a>
Create a from a byte array, and and an offset and length in bits
pub fn lead_padding(&self) -> usize
pub fn trailing_padding(&self) -> usize
pub fn prefix(&self) -> Option<u64>
pub fn suffix(&self) -> Option<u64>
pub fn chunks(&self) -> &'a [u64]
pub fn iter( &self, ) -> Chain<Chain<IntoIter<u64>, Cloned<Iter<'a, u64>>>, IntoIter<u64>> ⓘ
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