Module polars_arrow::compute::concatenate
source · Expand description
Example:
use polars_arrow::array::Utf8Array;
use polars_arrow::compute::concatenate::concatenate;
let arr = concatenate(&[
&Utf8Array::<i32>::from_slice(["hello", "world"]),
&Utf8Array::<i32>::from_slice(["!"]),
]).unwrap();
assert_eq!(arr.len(), 3);
Functions§
- Concatenate the validities of multiple Arrays into a single Bitmap.