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

Method is_null

arrow-data/src/data.rs:425–430  ·  view source on GitHub ↗
(&self, i: usize)

Source from the content-addressed store, hash-verified

423 /// Returns whether the element at index `i` is null
424 #[inline]
425 pub fn is_null(&self, i: usize) -> bool {
426 match &self.nulls {
427 Some(v) => v.is_null(i),
428 None => false,
429 }
430 }
431
432 /// Returns a reference to the null buffer of this [`ArrayData`] if any
433 ///

Callers 15

allocMethod · 0.45
compare_implFunction · 0.45
from_batchMethod · 0.45
arrow_rs_free_errorFunction · 0.45
release_arrayFunction · 0.45
is_validMethod · 0.45
check_boundsMethod · 0.45
variable_sized_equalFunction · 0.45

Calls

no outgoing calls

Tested by 5

allocMethod · 0.36