[−][src]Trait float_cmp::ApproxEqRatio
ApproxEqRatio is a trait for approximate equality comparisons bounding the ratio of the difference to the larger.
Provided methods
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.
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.