1 2 3 4 5 6 7 8 9 10 11
use super::{Scalar, sealed::Sealed}; #[cfg(feature = "f64")] impl Sealed for f64 {} #[cfg(feature = "f64")] impl Scalar for f64 {} #[cfg(feature = "f32")] impl Sealed for f32 {} #[cfg(feature = "f32")] impl Scalar for f32 {}