Trait sp_arithmetic::traits::CheckedAdd[][src]

pub trait CheckedAdd: Add<Self, Output = Self> {
    fn checked_add(&self, v: &Self) -> Option<Self>;
}
Expand description

Performs addition that returns None instead of wrapping around on overflow.

Required methods

Adds two numbers, checking for overflow. If overflow happens, None is returned.

Implementations on Foreign Types

Implementors