Returns a [`BitSliceIterator`] yielding contiguous ranges of valid indices Valid indices indicate the corresponding value is not NULL
(&self)
| 206 | /// |
| 207 | /// Valid indices indicate the corresponding value is not NULL |
| 208 | pub fn valid_slices(&self) -> BitSliceIterator<'_> { |
| 209 | self.buffer.set_slices() |
| 210 | } |
| 211 | |
| 212 | /// Calls the provided closure for each index in this null mask that is set |
| 213 | #[inline] |
no test coverage detected