Trait aurum_numeric::CheckedAdd [] [src]

pub trait CheckedAdd<R = Self> {
    type Output;
    fn checked_add(self, rhs: R) -> Option<Self::Output>;
}

Checked addition which returns None if an overflow or underflow occurs.

Associated Types

Required Methods

Implementors