Type Definition arrow::array::LargeStringArray[][src]

pub type LargeStringArray = GenericStringArray<i64>;
Expand description

An array where each element is a variable-sized sequence of bytes representing a string whose maximum length (in bytes) is represented by a i64.

Example

use arrow::array::LargeStringArray;
let array = LargeStringArray::from(vec![Some("foo"), None, Some("bar")]);
assert_eq!(array.value(2), "bar");