Type Alias arrow_array::array::StringViewArray

source ·
pub type StringViewArray = GenericByteViewArray<StringViewType>;
Expand description

A GenericByteViewArray that stores utf8 data

§Example

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

Aliased Type§

struct StringViewArray { /* private fields */ }

Implementations§

source§

impl StringViewArray

source

pub fn to_binary_view(self) -> BinaryViewArray

source

pub fn is_ascii(&self) -> bool

Returns true if all data within this array is ASCII

Trait Implementations§

source§

impl From<Vec<&str>> for StringViewArray

source§

fn from(v: Vec<&str>) -> Self

Converts to this type from the input type.
source§

impl From<Vec<Option<&str>>> for StringViewArray

source§

fn from(v: Vec<Option<&str>>) -> Self

Converts to this type from the input type.
source§

impl From<Vec<Option<String>>> for StringViewArray

source§

fn from(v: Vec<Option<String>>) -> Self

Converts to this type from the input type.
source§

impl From<Vec<String>> for StringViewArray

source§

fn from(v: Vec<String>) -> Self

Converts to this type from the input type.