Trait approx::UlpsEq [−][src]
Equality comparisons between two numbers using both the absolute difference and ULPs (Units in Last Place) based comparisons.
Required methods
fn default_max_ulps() -> u32
[src]
The default ULPs to tolerate when testing values that are far-apart.
This is used when no max_ulps
value is supplied to the ulps_eq
macro.
fn ulps_eq(&self, other: &Rhs, epsilon: Self::Epsilon, max_ulps: u32) -> bool
[src]
A test for equality that uses units in the last place (ULP) if the values are far apart.
Provided methods
fn ulps_ne(&self, other: &Rhs, epsilon: Self::Epsilon, max_ulps: u32) -> bool
[src]
The inverse of ApproxEq::ulps_eq
.
Implementations on Foreign Types
impl UlpsEq<f32> for f32
[src]
fn default_max_ulps() -> u32
[src]
fn ulps_eq(&self, other: &f32, epsilon: f32, max_ulps: u32) -> bool
[src]
impl UlpsEq<f64> for f64
[src]
fn default_max_ulps() -> u32
[src]
fn ulps_eq(&self, other: &f64, epsilon: f64, max_ulps: u32) -> bool
[src]
impl<'a, T: UlpsEq + ?Sized> UlpsEq<&'a T> for &'a T
[src]
fn default_max_ulps() -> u32
[src]
fn ulps_eq(&self, other: &&'a T, epsilon: T::Epsilon, max_ulps: u32) -> bool
[src]
impl<'a, T: UlpsEq + ?Sized> UlpsEq<&'a mut T> for &'a mut T
[src]
fn default_max_ulps() -> u32
[src]
fn ulps_eq(&self, other: &&'a mut T, epsilon: T::Epsilon, max_ulps: u32) -> bool
[src]
impl<T: UlpsEq + Copy> UlpsEq<Cell<T>> for Cell<T>
[src]
fn default_max_ulps() -> u32
[src]
fn ulps_eq(&self, other: &Cell<T>, epsilon: T::Epsilon, max_ulps: u32) -> bool
[src]
impl<T: UlpsEq + ?Sized> UlpsEq<RefCell<T>> for RefCell<T>
[src]
fn default_max_ulps() -> u32
[src]
fn ulps_eq(
&self,
other: &RefCell<T>,
epsilon: T::Epsilon,
max_ulps: u32
) -> bool
[src]
&self,
other: &RefCell<T>,
epsilon: T::Epsilon,
max_ulps: u32
) -> bool
impl<A, B> UlpsEq<[B]> for [A] where
A: UlpsEq<B>,
A::Epsilon: Clone,
[src]
A: UlpsEq<B>,
A::Epsilon: Clone,