Function re_chunk::util::concat_arrays

source ·
pub fn concat_arrays(
    arrays: &[&dyn Arrow2Array],
) -> Result<Box<dyn Arrow2Array>>
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.