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

Method is_null

arrow-array/src/iterator.rs:69–74  ·  view source on GitHub ↗
(&self, idx: usize)

Source from the content-addressed store, hash-verified

67
68 #[inline]
69 fn is_null(&self, idx: usize) -> bool {
70 self.logical_nulls
71 .as_ref()
72 .map(|x| x.is_null(idx))
73 .unwrap_or_default()
74 }
75}
76
77impl<T: ArrayAccessor> Iterator for ArrayIter<T> {

Callers 12

parse_default_literalMethod · 0.45
values_equal_atFunction · 0.45
expand_ree_to_int32Function · 0.45
encodeMethod · 0.45
nextMethod · 0.45
next_backMethod · 0.45
release_streamFunction · 0.45
get_stream_last_errorMethod · 0.45
nextMethod · 0.45
next_backMethod · 0.45

Calls 1

as_refMethod · 0.45