Module concat

Source
Expand description

Defines concat kernel for ArrayRef

Example:

use arrow_array::{ArrayRef, StringArray};
use arrow_select::concat::concat;

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

Macrosยง

dict_helper ๐Ÿ”’
primitive_concat ๐Ÿ”’

Functionsยง

binary_capacity ๐Ÿ”’
concat
Concatenate multiple [Array] of the same type into a single [ArrayRef].
concat_batches
Concatenates batches together into a single [RecordBatch].
concat_boolean ๐Ÿ”’
concat_bytes ๐Ÿ”’
concat_dictionaries ๐Ÿ”’
concat_fallback ๐Ÿ”’
Concatenates arrays using MutableArrayData
concat_lists ๐Ÿ”’
concat_primitives ๐Ÿ”’
fixed_size_list_capacity ๐Ÿ”’
get_capacity ๐Ÿ”’