[][src]Trait ezcgmath::approx::UlpsEq

pub trait UlpsEq<Rhs = Self>: AbsDiffEq<Rhs> where
    Rhs: ?Sized
{ fn default_max_ulps() -> u32;
fn ulps_eq(
        &self,
        other: &Rhs,
        epsilon: Self::Epsilon,
        max_ulps: u32
    ) -> bool; fn ulps_ne(
        &self,
        other: &Rhs,
        epsilon: Self::Epsilon,
        max_ulps: u32
    ) -> bool { ... } }

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

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

A test for equality that uses units in the last place (ULP) if the values are far apart.

Loading content...

Provided methods

fn ulps_ne(&self, other: &Rhs, epsilon: Self::Epsilon, max_ulps: u32) -> bool

The inverse of ApproxEq::ulps_eq.

Loading content...

Implementations on Foreign Types

impl<T> UlpsEq<Cell<T>> for Cell<T> where
    T: UlpsEq<T> + Copy
[src]

impl<'a, T> UlpsEq<&'a T> for &'a T where
    T: UlpsEq<T> + ?Sized
[src]

impl<'a, T> UlpsEq<&'a mut T> for &'a mut T where
    T: UlpsEq<T> + ?Sized
[src]

impl<A, B> UlpsEq<[B]> for [A] where
    A: UlpsEq<B>,
    <A as AbsDiffEq<B>>::Epsilon: Clone
[src]

impl<T> UlpsEq<RefCell<T>> for RefCell<T> where
    T: UlpsEq<T> + ?Sized
[src]

impl UlpsEq<f64> for f64[src]

impl UlpsEq<f32> for f32[src]

Loading content...

Implementors

impl UlpsEq<Matrix1x3> for Matrix1x3[src]

impl UlpsEq<Matrix2x2> for Matrix2x2[src]

impl UlpsEq<Matrix3x3> for Matrix3x3[src]

impl UlpsEq<Matrix4x4> for Matrix4x4[src]

impl UlpsEq<Quaternion> for Quaternion[src]

impl UlpsEq<Degrees> for Degrees[src]

impl UlpsEq<Radians> for Radians[src]

impl UlpsEq<Vector2> for Vector2[src]

impl UlpsEq<Vector3> for Vector3[src]

impl UlpsEq<Vector4> for Vector4[src]

Loading content...