rust-appro-eq

crates.io badge Build Status docs.rs Coverage Status

Implementing the ApproEq traits, Can asserts that the two expressions are approximately equal to each other.

How-to Use

See the crate documentation for more details.

Examples

rust assert_appro_eq!(1f64, 1.5f64, 0.6f64); // does not panic assert_appro_eq!(0f64, 1e-12f64); // does not panic

rust:should_panic assert_appro_eq!(1f64, 2f64); // panics

Optional Features