Type Definition arrow_array::array::StringArray

source ·
pub type StringArray = GenericStringArray<i32>;
Expand description

An array of str using i32 offsets

Example

use arrow_array::StringArray;
let array = StringArray::from(vec![Some("foo"), None, Some("bar")]);
assert_eq!(array.value(0), "foo");