Crates.io | is_close |
lib.rs | is_close |
version | 0.1.3 |
source | src |
created_at | 2020-10-05 22:50:10.571826 |
updated_at | 2021-07-11 19:10:39.821149 |
description | Determine whether floating point numbers are close in value |
homepage | |
repository | https://github.com/PM4Rs/is_close |
max_upload_size | |
id | 296448 |
size | 32,382 |
Determine whether floating point numbers are close in value
In scenarios such as testing it is often times more useful to know whether two floating point
numbers are close to each other rather than exactly equal. Due to finite precision of computers,
we usually cannot even expect bitwise equality of two values even if underlying math suggests
it. This is where is_close
comes into play. This crate is
strongly inspired by Python PEP 485 aka
math.isclose
.
#[macro_use]
extern crate is_close;
assert!(is_close!(42.0, 42.0));
assert!(all_close!(vec![9.0, 10.0], vec![9.0, 10.0]));
assert!(any_close!(vec![0.0, 10.0], vec![9.0, 10.0]));
You'll find plenty of examples at our documentation.
Copyright © 2020 The promi Developers
is_close is licensed under MIT OR Apache 2.0 license