Function re_arrow_util::arrow_util::concat_arrays
source · pub fn concat_arrays(arrays: &[&dyn Array]) -> Result<ArrayRef>
Expand description
Applies a [arrow::compute::concat
] kernel to the given arrays
.
Early outs where it makes sense (e.g. arrays.len() == 1
).
Returns an error if the arrays don’t share the exact same datatype.