Equalish

Equality operators for floats that are almost equal. Smooths out rounding errors and floating point precision issues.

import Equalish
# As a macro
assert is_eq_ish(0.5, 0.50000001)
# As a guard
def foo(a, b) when is_eq_ish(a, b) do
...
end

All 6 of the usual equality operators are present:

assert is_gt_ish(0.5, 0.2)
refute is_gt_ish(0.5, 0.49999999999999)

Tolerance

You can pass in a custom tolerance threshold, or add it to your config.

Installation

This package can be installed by adding equalish to your list of dependencies in mix.exs:

def deps do
[
{:equalish, "~> 1.0.0"}
]
end

Documentation can be found at https://hexdocs.pm/equalish.