Returns a slice of children [`ArrayData`]. This will be non empty for type such as lists and structs.
(&self)
| 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] |
no outgoing calls