#comparison #float

is_close

Determine whether floating point numbers are close in value

4 releases

0.1.3 Jul 11, 2021
0.1.2 May 31, 2021
0.1.1 Oct 6, 2020
0.1.0 Oct 5, 2020

#64 in #comparison

Download history 227/week @ 2023-11-20 238/week @ 2023-11-27 313/week @ 2023-12-04 231/week @ 2023-12-11 300/week @ 2023-12-18 23/week @ 2023-12-25 163/week @ 2024-01-01 121/week @ 2024-01-08 136/week @ 2024-01-15 247/week @ 2024-01-22 224/week @ 2024-01-29 347/week @ 2024-02-05 392/week @ 2024-02-12 480/week @ 2024-02-19 416/week @ 2024-02-26 436/week @ 2024-03-04

1,761 downloads per month

MIT/Apache

20KB
292 lines

is_close

Determine whether floating point numbers are close in value

Build Status Crate API License Downloads

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.

Usage

#[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.

License

Copyright © 2020 The promi Developers

is_close is licensed under MIT OR Apache 2.0 license

Dependencies

~155KB