Returns whether the element at `index` is *not* null, the opposite of [`Self::is_null`]. # Example: ``` use arrow_array::{Array, Int32Array}; let array = Int32Array::from(vec![Some(1), None]); assert_eq!(array.is_valid(0), true); assert_eq!(array.is_valid(1), false); ```
(&self, index: usize)
| 283 | /// assert_eq!(array.is_valid(1), false); |
| 284 | /// ``` |
| 285 | fn is_valid(&self, index: usize) -> bool { |
| 286 | !self.is_null(index) |
| 287 | } |
| 288 | |
| 289 | /// Returns the total number of physical null values in this array. |
| 290 | /// |
nothing calls this directly
no test coverage detected