Type Definition arrow_array::array::LargeStringArray
source · pub type LargeStringArray = GenericStringArray<i64>;
Expand description
An array of str
using i64
offsets
Example
use arrow_array::LargeStringArray;
let array = LargeStringArray::from(vec![Some("foo"), None, Some("bar")]);
assert_eq!(array.value(2), "bar");