Crates.io | approx_eq |
lib.rs | approx_eq |
version | 0.1.8 |
source | src |
created_at | 2020-10-15 17:31:34.237117 |
updated_at | 2020-11-01 06:14:42.478564 |
description | A macro for comparing equality of two values up to an arbitrary error in the *relative* difference |
homepage | |
repository | https://github.com/al-jshen/approx_eq |
max_upload_size | |
id | 300086 |
size | 6,626 |
This crate provides a macro to check whether two numbers are approximately equal. It does so by checking that the relative difference between the two numbers is less than some upper limit.
To use this in your Rust program, add the following to your Cargo.toml
file:
// Cargo.toml
[dependencies]
approx_eq = "0.1"
Using this macro is easy!
// main.rs
use approx_eq::assert_approx_eq;
fn main() {
assert_approx_eq!(1., 0.99999999999); // should pass
assert_approx_eq!(1., 0.99999999999, 1e-5); // should pass
assert_approx_eq!(1., 0.99999999999, 1e-20); // should fail
assert_approx_eq!(1., 2.) // should fail
}