(&self)
| 464 | /// Returns the total number of nulls in this array |
| 465 | #[inline] |
| 466 | pub fn null_count(&self) -> usize { |
| 467 | self.nulls |
| 468 | .as_ref() |
| 469 | .map(|x| x.null_count()) |
| 470 | .unwrap_or_default() |
| 471 | } |
| 472 | |
| 473 | /// Returns the total number of bytes of memory occupied by the |
| 474 | /// buffers owned by this [`ArrayData`] and all of its |
no test coverage detected