pub trait CheckedSum<R>: SumSeal<R> {
    fn checked_sum(self) -> Option<R>;
}
Expand description

Calculate the sum over the iterator using checked arithmetic.

Required Methods

Calculate the sum over the iterator using checked arithmetic. If an over or underflow would happen it returns None.

Implementors