Returns an iterator over the bits in this [`NullBuffer`] `true` indicates that the corresponding value is not NULL `false` indicates that the corresponding value is NULL Note: [`Self::valid_indices`] will be significantly faster for most use-cases
(&self)
| 192 | /// |
| 193 | /// Note: [`Self::valid_indices`] will be significantly faster for most use-cases |
| 194 | pub fn iter(&self) -> BitIterator<'_> { |
| 195 | self.buffer.iter() |
| 196 | } |
| 197 | |
| 198 | /// Returns a [`BitIndexIterator`] over the valid indices in this [`NullBuffer`] |
| 199 | /// |
no outgoing calls