pub trait IsCloseFloat {
    // Required method
    fn is_close(self, other: Self, rel_tol: Self, abs_tol: Self) -> bool;
}

Required Methods§

source

fn is_close(self, other: Self, rel_tol: Self, abs_tol: Self) -> bool

Implementations on Foreign Types§

source§

impl IsCloseFloat for f64

source§

fn is_close(self, other: f64, rel_tol: f64, abs_tol: f64) -> bool

Implementors§