danwi 0.4.2

Zero-cost dimensional analysis library with SI units, compile-time checking, and no_std support
Documentation
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 {}