(&self)
| 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] |