pub trait NumericReductionFunc: Iterator<Item = f64> {
    // Provided method
    fn aggregate_by(&mut self, fun: ReductionFunc) -> Option<Self::Item> { ... }
}

Provided Methods§

source

fn aggregate_by(&mut self, fun: ReductionFunc) -> Option<Self::Item>

Implementors§

source§

impl<T> NumericReductionFunc for T
where T: Iterator<Item = f64>,