Returns a [`BitIndexIterator`] over the valid indices in this [`NullBuffer`] Valid indices indicate the corresponding value is not NULL
(&self)
| 199 | /// |
| 200 | /// Valid indices indicate the corresponding value is not NULL |
| 201 | pub fn valid_indices(&self) -> BitIndexIterator<'_> { |
| 202 | self.buffer.set_indices() |
| 203 | } |
| 204 | |
| 205 | /// Returns a [`BitSliceIterator`] yielding contiguous ranges of valid indices |
| 206 | /// |
no test coverage detected