Returns an iterator over the bits in this [`BooleanBuffer`]
(&self)
| 608 | |
| 609 | /// Returns an iterator over the bits in this [`BooleanBuffer`] |
| 610 | pub fn iter(&self) -> BitIterator<'_> { |
| 611 | self.into_iter() |
| 612 | } |
| 613 | |
| 614 | /// Returns an [`UnalignedBitChunk`] over this buffer's values. |
| 615 | fn unaligned_bit_chunks(&self) -> UnalignedBitChunk<'_> { |