FracApprox

Trait FracApprox 

Source
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> ;
    fn frac_approx_bound(self, bound: I) -> [(I, I); 2];
}

Required Methods§

Source

fn frac_approx_iter(self) -> FracApproxIter<I, F>

Source

fn frac_approx_iter_bound(self, bound: I) -> FracApproxIter<I, F>

Source

fn frac_approx_bound(self, bound: I) -> [(I, I); 2]

Implementors§

Source§

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