(&self, idx: usize)
| 171 | /// Returns `true` if the value at `idx` is null |
| 172 | #[inline] |
| 173 | pub fn is_null(&self, idx: usize) -> bool { |
| 174 | !self.is_valid(idx) |
| 175 | } |
| 176 | |
| 177 | /// Returns the packed validity of this [`NullBuffer`] not including any offset |
| 178 | #[inline] |