(&self, i: usize)
| 423 | /// Returns whether the element at index `i` is null |
| 424 | #[inline] |
| 425 | pub fn is_null(&self, i: usize) -> bool { |
| 426 | match &self.nulls { |
| 427 | Some(v) => v.is_null(i), |
| 428 | None => false, |
| 429 | } |
| 430 | } |
| 431 | |
| 432 | /// Returns a reference to the null buffer of this [`ArrayData`] if any |
| 433 | /// |
no outgoing calls