Function re_chunk::util::arrays_to_list_array
source · pub fn arrays_to_list_array(
array_datatype: DataType,
arrays: &[Option<&dyn ArrowArray>]
) -> Option<ListArray<i32>>
Expand description
Create a sparse list-array out of an array of arrays.
Returns None
if any of the specified arrays
doesn’t match the given array_datatype
.
Returns an empty list if arrays
is empty.