Trait crypto_bigint::CheckedAdd
source · pub trait CheckedAdd<Rhs = Self>: Sized {
type Output;
// Required method
fn checked_add(&self, rhs: Rhs) -> CtOption<Self>;
}
Expand description
Checked addition.
Required Associated Types§
Required Methods§
sourcefn checked_add(&self, rhs: Rhs) -> CtOption<Self>
fn checked_add(&self, rhs: Rhs) -> CtOption<Self>
Perform checked subtraction, returning a CtOption
which is_some
only if the operation did not overflow.