(
&self,
f: F,
)
| 212 | /// Calls the provided closure for each index in this null mask that is set |
| 213 | #[inline] |
| 214 | pub fn try_for_each_valid_idx<E, F: FnMut(usize) -> Result<(), E>>( |
| 215 | &self, |
| 216 | f: F, |
| 217 | ) -> Result<(), E> { |
| 218 | if self.null_count == self.len() { |
| 219 | return Ok(()); |
| 220 | } |
| 221 | self.valid_indices().try_for_each(f) |
| 222 | } |
| 223 | |
| 224 | /// Returns the inner [`BooleanBuffer`] |
| 225 | #[inline] |
no test coverage detected