Trait rta_for_fps_lib::curve::Aggregate[][src]

pub trait Aggregate<A = Self> {
    fn aggregate<I>(iter: I) -> Self
    where
        I: Iterator<Item = A>
; }
Expand description

Trait used by the AggregateExt Extension trait

Required methods

aggregate all elements of iter into a new Self pendant to core::iter::Sum

Implementors