Trait appro_eq::RelApproEq0.1.0 [] [src]

pub trait RelApproEq<Rhs: ?Sized = Self, Diff = Self> {
    fn rel_appro_eq(&self, other: &Rhs) -> bool;

    fn rel_appro_ne(&self, other: &Rhs) -> bool { ... }
}

Trait for approximately equality comparisons.

Required Methods

This method tests for approximately equal.

Provided Methods

This method tests for not approximately equal.

Implementors