Returns whether the element at `index` is null according to [`Array::nulls`] Note: For performance reasons, this method returns nullability solely as determined by the null buffer. This difference can lead to surprising results, for example, [`NullArray::is_null`] always returns `false` as the array lacks a null buffer. Similarly [`DictionaryArray`], [`RunArray`] and [`UnionArray`] may encode nul
(&self, index: usize)
| 266 | /// assert_eq!(array.is_null(0), false); |
| 267 | /// ``` |
| 268 | fn is_null(&self, index: usize) -> bool { |
| 269 | self.nulls().map(|n| n.is_null(index)).unwrap_or_default() |
| 270 | } |
| 271 | |
| 272 | /// Returns whether the element at `index` is *not* null, the |
| 273 | /// opposite of [`Self::is_null`]. |
nothing calls this directly
no test coverage detected