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

Method bit_chunks

arrow-buffer/src/buffer/boolean.rs:460–462  ·  view source on GitHub ↗
(&self)

Source from the content-addressed store, hash-verified

458 /// this buffer's bits in `u64` chunks
459 #[inline]
460 pub fn bit_chunks(&self) -> BitChunks<'_> {
461 BitChunks::new(self.values(), self.bit_offset, self.bit_len)
462 }
463
464 /// Returns the offset of this [`BooleanBuffer`] in bits (not bytes)
465 #[inline]

Calls 1

valuesMethod · 0.45