Type Definition arrow::array::Int32Array

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

Example: Using collect

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