Trait rta_for_fps_lib::curve::AggregateExt[][src]

pub trait AggregateExt: Iterator + Sized {
    fn aggregate<A: Aggregate<Self::Item>>(self) -> A { ... }
}
Expand description

Extension trait to allow calling aggregate on an iterator

Provided methods

aggregate all iterator elements acts similar to core::iter::Iterator::sum

Implementors