pub struct Ulps<A, B = A> where
A: UlpsEq<B> + ?Sized,
B: ?Sized, {
pub epsilon: A::Epsilon,
pub max_ulps: u32,
}
Expand description
The requisite parameters for testing for approximate equality using an ULPs based comparison.
This is not normally used directly, rather via the assert_ulps_{eq|ne}!
and ulps_{eq|ne}!
macros.
Example
use std::f64;
use approx::Ulps;
Ulps::default().eq(&1.0, &1.0);
Ulps::default().epsilon(f64::EPSILON).eq(&1.0, &1.0);
Ulps::default().max_ulps(4).eq(&1.0, &1.0);
Ulps::default().epsilon(f64::EPSILON).max_ulps(4).eq(&1.0, &1.0);
Ulps::default().max_ulps(4).epsilon(f64::EPSILON).eq(&1.0, &1.0);
Fields
epsilon: A::Epsilon
The tolerance to use when testing values that are close together.
max_ulps: u32
The ULPs to tolerate when testing values that are far-apart.
Implementations
sourceimpl<A, B> Ulps<A, B> where
A: UlpsEq<B> + ?Sized,
B: ?Sized,
impl<A, B> Ulps<A, B> where
A: UlpsEq<B> + ?Sized,
B: ?Sized,
Trait Implementations
Auto Trait Implementations
impl<A: ?Sized, B: ?Sized> RefUnwindSafe for Ulps<A, B> where
<A as AbsDiffEq<B>>::Epsilon: RefUnwindSafe,
impl<A: ?Sized, B: ?Sized> Send for Ulps<A, B> where
<A as AbsDiffEq<B>>::Epsilon: Send,
impl<A: ?Sized, B: ?Sized> Sync for Ulps<A, B> where
<A as AbsDiffEq<B>>::Epsilon: Sync,
impl<A: ?Sized, B: ?Sized> Unpin for Ulps<A, B> where
<A as AbsDiffEq<B>>::Epsilon: Unpin,
impl<A: ?Sized, B: ?Sized> UnwindSafe for Ulps<A, B> where
<A as AbsDiffEq<B>>::Epsilon: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more