Returns an [`UnalignedBitChunk`] over this buffer's values.
(&self)
| 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<'_> { |