Trait number_traits::ApproxEq [] [src]

pub trait ApproxEq {
    fn approx_eq(&self, other: &Self) -> bool;
fn approx_eq_tolerance(&self, other: &Self, tolerance: &Self) -> bool; fn approx_ne(&self, other: &Self) -> bool { ... }
fn approx_ne_tolerance(&self, other: &Self, tolerance: &Self) -> bool { ... } }

Required Methods

Provided Methods

Implementations on Foreign Types

impl<T> ApproxEq for Wrapping<T> where
    T: ApproxEq
[src]

[src]

[src]

[src]

[src]

Implementors