Trait NumericReductionFunc

Source
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>,