(&self, i: usize)
| 440 | /// Returns whether the element at index `i` is not null |
| 441 | #[inline] |
| 442 | pub fn is_valid(&self, i: usize) -> bool { |
| 443 | !self.is_null(i) |
| 444 | } |
| 445 | |
| 446 | /// Returns the length (i.e., number of elements) of this [`ArrayData`]. |
| 447 | #[inline] |