pub trait FloatAssertions<T: Float> {
    fn is_close_to<E: Borrow<T>, O: Borrow<T>>(
        &mut self,
        expected: E,
        tolerance: O
    ); }

Required Methods§

Implementors§