Type Alias deltalake::arrow::array::array::Int8DictionaryArray

source ·
pub type Int8DictionaryArray = DictionaryArray<Int8Type>;
Expand description

A DictionaryArray indexed by i8

§Example: Using collect


let array: Int8DictionaryArray = vec!["a", "a", "b", "c"].into_iter().collect();
let values: Arc<dyn Array> = Arc::new(StringArray::from(vec!["a", "b", "c"]));
assert_eq!(array.keys(), &Int8Array::from(vec![0, 0, 1, 2]));
assert_eq!(array.values(), &values);

See DictionaryArray for more information and examples

Aliased Type§

struct Int8DictionaryArray { /* private fields */ }