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

Method child_data

arrow-data/src/data.rs:419–421  ·  view source on GitHub ↗

Returns a slice of children [`ArrayData`]. This will be non empty for type such as lists and structs.

(&self)

Source from the content-addressed store, hash-verified

417 /// Returns a slice of children [`ArrayData`]. This will be non
418 /// empty for type such as lists and structs.
419 pub fn child_data(&self) -> &[ArrayData] {
420 &self.child_data[..]
421 }
422
423 /// Returns whether the element at index `i` is null
424 #[inline]

Callers 15

decode_columnFunction · 0.80
test_dictionary_nullsFunction · 0.80
decode_fixed_size_listFunction · 0.80
filter_dictFunction · 0.80
concat_run_arraysFunction · 0.80
take_list_viewFunction · 0.80
test_decimal_listFunction · 0.80

Calls

no outgoing calls