Trait cgats::IterSum

source ·
pub trait IterSum<'a, T: 'a + PartialSum<'a, T>>: Sized + IntoIterator<Item = &'a T> {
    fn iter_sum(self) -> Option<T> { ... }
}
Expand description

Front end method for the PartialSum trait

Provided Methods

Try to sum the values in the iterator

Implementors