Function re_chunk::util::concat_arrays
source · pub fn concat_arrays(arrays: &[&dyn ArrowArray]) -> Result<Box<dyn ArrowArray>>
Expand description
Applies a concatenate 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.