pub trait NearlyEqual {
    fn nearly_equals(self, rhs: Self) -> bool;
}
Expand description

Compare floating-point values using an epsilon

Required methods

Implementations on Foreign Types

Implementors