1 2 3 4 5 6
/// Flt is the Floating Point type requested with crate options #[cfg(feature = "f64")] pub type Flt = f64; /// Flt is the Floating Point type requested with crate options #[cfg(not(feature = "f64"))] pub type Flt = f32;