Type Definition arrow::array::Int32Array

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

An array of i32

Example: Using collect

let arr : Int32Array = [Some(1), Some(2)].into_iter().collect();