Type Definition arrow_array::array::Int64Array
source · pub type Int64Array = PrimitiveArray<Int64Type>;
Expand description
An array of i64
Example: Using collect
let arr : Int64Array = [Some(1), Some(2)].into_iter().collect();