pub trait FracApprox<I, F> {
    // Required methods
    fn frac_approx_iter(self) -> FracApproxIter<I, F> ;
    fn frac_approx_iter_bound(self, bound: I) -> FracApproxIter<I, F> ;
}

Required Methods§

Implementors§

source§

impl<I: SbInt, F: Fn(I, I) -> bool> FracApprox<I, F> for F