[−][src]Struct cgmath::Ulps
The requisite parameters for testing for approximate equality.
Fields
lhs: &'a T
The left-hand side of the approximate equality comparison.
rhs: &'a T
The right-hand side of the approximate equality comparison.
epsilon: <T as ApproxEq>::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<'a, T> Ulps<'a, T> where
T: ApproxEq,
[src]
T: ApproxEq,
pub fn new(lhs: &'a T, rhs: &'a T) -> Ulps<'a, T>
[src]
The beginning of a chained equality expression, using an ULPs based comparison.
use std::f64; use approx::Ulps; Ulps::new(&1.0, &1.0).eq(); Ulps::new(&1.0, &1.0).epsilon(f64::EPSILON).eq(); Ulps::new(&1.0, &1.0).max_ulps(4).eq(); Ulps::new(&1.0, &1.0).epsilon(f64::EPSILON).max_ulps(4).eq(); Ulps::new(&1.0, &1.0).max_ulps(4).epsilon(f64::EPSILON).eq();
pub fn epsilon(self, epsilon: <T as ApproxEq>::Epsilon) -> Ulps<'a, T>
[src]
Replace the epsilon value with the one specified.
pub fn max_ulps(self, max_ulps: u32) -> Ulps<'a, T>
[src]
Replace the max ulps value with the one specified.
pub fn eq(self) -> bool
[src]
Peform the equality comparison
pub fn ne(self) -> bool
[src]
Peform the inequality comparison
Auto Trait Implementations
impl<'a, T> Unpin for Ulps<'a, T> where
<T as ApproxEq>::Epsilon: Unpin,
<T as ApproxEq>::Epsilon: Unpin,
impl<'a, T> Sync for Ulps<'a, T> where
T: Sync,
<T as ApproxEq>::Epsilon: Sync,
T: Sync,
<T as ApproxEq>::Epsilon: Sync,
impl<'a, T> Send for Ulps<'a, T> where
T: Sync,
<T as ApproxEq>::Epsilon: Send,
T: Sync,
<T as ApproxEq>::Epsilon: Send,
impl<'a, T> UnwindSafe for Ulps<'a, T> where
T: RefUnwindSafe,
<T as ApproxEq>::Epsilon: UnwindSafe,
T: RefUnwindSafe,
<T as ApproxEq>::Epsilon: UnwindSafe,
impl<'a, T> RefUnwindSafe for Ulps<'a, T> where
T: RefUnwindSafe,
<T as ApproxEq>::Epsilon: RefUnwindSafe,
T: RefUnwindSafe,
<T as ApproxEq>::Epsilon: RefUnwindSafe,
Blanket Implementations
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
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, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> 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,