MCPcopy Create free account
hub / github.com/apache/arrow-rs / null_count

Method null_count

arrow-data/src/data.rs:466–471  ·  view source on GitHub ↗
(&self)

Source from the content-addressed store, hash-verified

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

Callers 4

validateMethod · 0.45
validate_nullsMethod · 0.45
validate_non_nullableMethod · 0.45
buildMethod · 0.45

Calls 1

as_refMethod · 0.45

Tested by

no test coverage detected