Type Definition arrow::array::Float16Array

source · []
pub type Float16Array = PrimitiveArray<Float16Type>;
Expand description

Example: Using collect

use half::f16;
let arr : Float16Array = [Some(f16::from_f64(1.0)), Some(f16::from_f64(2.0))].into_iter().collect();