Trait float_cmp::ApproxEq [−][src]
pub trait ApproxEq: Sized { type Margin: Copy + Default; fn approx_eq<M: Into<Self::Margin>>(self, other: Self, margin: M) -> bool; fn approx_ne<M: Into<Self::Margin>>(self, other: Self, margin: M) -> bool { ... } }
Expand description
A trait for approximate equality comparisons.