Type Definition arrow::array::Float64Array[][src]

pub type Float64Array = PrimitiveArray<Float64Type>;
Expand description

Example: Using collect

let arr : Float64Array = [Some(1.0), Some(2.0)].into_iter().collect();