[−][src]Struct approx::Ulps
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: T::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.
Methods
impl<T: UlpsEq + ?Sized> Ulps<T>
[src]
pub fn epsilon(self, epsilon: T::Epsilon) -> Ulps<T>
[src]
Replace the epsilon value with the one specified.
pub fn max_ulps(self, max_ulps: u32) -> Ulps<T>
[src]
Replace the max ulps value with the one specified.
pub fn eq(self, lhs: &T, rhs: &T) -> bool
[src]
Peform the equality comparison
pub fn ne(self, lhs: &T, rhs: &T) -> bool
[src]
Peform the inequality comparison
Trait Implementations
Auto Trait Implementations
impl<T: ?Sized> Send for Ulps<T> where
<T as AbsDiffEq>::Epsilon: Send,
<T as AbsDiffEq>::Epsilon: Send,
impl<T: ?Sized> Sync for Ulps<T> where
<T as AbsDiffEq>::Epsilon: Sync,
<T as AbsDiffEq>::Epsilon: Sync,
Blanket Implementations
impl<T, U> TryFrom for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = !
🔬 This is a nightly-only experimental API. (
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> From for T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
🔬 This is a nightly-only experimental API. (
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,