Module arrow::compute::kernels::concat[][src]

Expand description

Defines concat kernel for ArrayRef

Example:

use arrow::array::{ArrayRef, StringArray};
use arrow::compute::concat;

let arr = concat(&[
    &StringArray::from(vec!["hello", "world"]),
    &StringArray::from(vec!["!"]),
]).unwrap();
assert_eq!(arr.len(), 3);

Functions

concat

Concatenate multiple Array of the same type into a single ArrayRef.