Implementing the NearlyEq
traits, Can asserts that the two expressions are nearly(approximately) equal to each other.
See the crate documentation for more details.
assert_nearly_eq!(1f64, 1.5f64, 0.6f64); // does not panic
assert_nearly_eq!(0f64, 1e-12f64); // does not panic
assert_nearly_eq!(1f64, 2f64); // panics
-
complex
- ImplementNearlyEq
traits fornum_complex::Complex
. This adds a dependency on thenum-complex
crate. -
rational
- ImplementNearlyEq
traits fornum_rational::Ratio
. This adds a dependency on thenum-rational
crate. -
ndarray
- ImplementNearlyEq
traits forndarray::ArrayBase
. This adds a dependency on thendarray
crate. -
use_fpa
- ImplementNearlyEq
traits for fixed-point types offpa
crate. -
i128
- ImplementNearlyEq
traits fori128
andu128
. Available only on Rust nightly channel.