Returns a [`BitSliceIterator`] yielding contiguous ranges of set bits
(&self)
| 628 | |
| 629 | /// Returns a [`BitSliceIterator`] yielding contiguous ranges of set bits |
| 630 | pub fn set_slices(&self) -> BitSliceIterator<'_> { |
| 631 | BitSliceIterator::new(self.values(), self.bit_offset, self.bit_len) |
| 632 | } |
| 633 | |
| 634 | /// Block size for chunked fold operations in [`Self::has_true`] and [`Self::has_false`]. |
| 635 | /// Using `chunks_exact` with this size lets the compiler fully unroll the inner |
no test coverage detected