Trait float_cmp::ApproxEqRatio
source · pub trait ApproxEqRatio:
Div<Output = Self>
+ Sub<Output = Self>
+ Neg<Output = Self>
+ PartialOrd
+ Zero
+ Sized
+ Copy {
// Provided methods
fn approx_eq_ratio(&self, other: &Self, ratio: Self) -> bool { ... }
fn approx_ne_ratio(&self, other: &Self, ratio: Self) -> bool { ... }
}
Expand description
ApproxEqRatio is a trait for approximate equality comparisons bounding the ratio of the difference to the larger.
Provided Methods§
sourcefn approx_eq_ratio(&self, other: &Self, ratio: Self) -> bool
fn approx_eq_ratio(&self, other: &Self, ratio: Self) -> bool
This method tests if self
and other
are nearly equal by bounding the
difference between them to some number much less than the larger of the two.
This bound is set as the ratio of the difference to the larger.
sourcefn approx_ne_ratio(&self, other: &Self, ratio: Self) -> bool
fn approx_ne_ratio(&self, other: &Self, ratio: Self) -> bool
This method tests if self
and other
are not nearly equal by bounding the
difference between them to some number much less than the larger of the two.
This bound is set as the ratio of the difference to the larger.
Object Safety§
This trait is not object safe.