1use crate::prelude::Numeric; 2 3/// Floating type for array 4pub trait Floating: Numeric {} 5 6impl Floating for f64 {} 7impl Floating for f32 {}