Module re_sdk::external::arrow2::compute::concatenate
Expand description
Contains the concatenate kernel
Example:
use re_arrow2::array::Utf8Array;
use re_arrow2::compute::concatenate::concatenate;
let arr = concatenate(&[
&Utf8Array::<i32>::from_slice(["hello", "world"]),
&Utf8Array::<i32>::from_slice(["!"]),
]).unwrap();
assert_eq!(arr.len(), 3);