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