Skip to main content

NumericReductionFunc

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>

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

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