Type Alias arrow::array::BinaryViewArray

source ·
pub type BinaryViewArray = GenericByteViewArray<BinaryViewType>;
Expand description

A GenericByteViewArray of [u8]

§Example

use arrow_array::BinaryViewArray;
let array = BinaryViewArray::from_iter_values(vec![b"hello" as &[u8], b"world", b"lulu", b"large payload over 12 bytes"]);
assert_eq!(array.value(0), b"hello");
assert_eq!(array.value(3), b"large payload over 12 bytes");

Aliased Type§

struct BinaryViewArray { /* private fields */ }