pub fn concat_arrays(
arrays: &[&(dyn Array + 'static)]
) -> Result<Box<dyn Array>, Error>
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.