MCPcopy Create free account
hub / github.com/apache/arrow-rs / unaligned_bit_chunks

Method unaligned_bit_chunks

arrow-buffer/src/buffer/boolean.rs:615–617  ·  view source on GitHub ↗

Returns an [`UnalignedBitChunk`] over this buffer's values.

(&self)

Source from the content-addressed store, hash-verified

613
614 /// Returns an [`UnalignedBitChunk`] over this buffer's values.
615 fn unaligned_bit_chunks(&self) -> UnalignedBitChunk<'_> {
616 UnalignedBitChunk::new(self.values(), self.offset(), self.len())
617 }
618
619 /// Returns an iterator over the set bit positions in this [`BooleanBuffer`]
620 pub fn set_indices(&self) -> BitIndexIterator<'_> {

Callers 2

has_trueMethod · 0.80
has_falseMethod · 0.80

Calls 3

valuesMethod · 0.45
offsetMethod · 0.45
lenMethod · 0.45

Tested by

no test coverage detected