pub trait CheckedSum<R>: SumSeal<R> {
// Required method
fn checked_sum(self) -> Option<R>;
}
Expand description
Calculates the sum over the iterator using checked arithmetic.
Required Methods§
sourcefn checked_sum(self) -> Option<R>
fn checked_sum(self) -> Option<R>
Calculates the sum over the iterator using checked arithmetic. If an over or underflow would
happen it returns None
.