Type Alias arrow::array::Int32Array

source ·
pub type Int32Array = PrimitiveArray<Int32Type>;
Expand description

A PrimitiveArray of i32

§Examples

Construction

// Create from Vec<Option<i32>>
let arr = Int32Array::from(vec![Some(1), None, Some(2)]);
// Create from Vec<i32>
let arr = Int32Array::from(vec![1, 2, 3]);
// Create iter/collect
let arr: Int32Array = std::iter::repeat(42).take(10).collect();

See PrimitiveArray for more information and examples

Aliased Type§

struct Int32Array { /* private fields */ }