Trait num_modular::ModularPow
source · pub trait ModularPow<Exp = Self, Modulus = Self> {
type Output;
// Required method
fn powm(self, exp: Exp, m: Modulus) -> Self::Output;
}
Expand description
Modular power functions
pub trait ModularPow<Exp = Self, Modulus = Self> {
type Output;
// Required method
fn powm(self, exp: Exp, m: Modulus) -> Self::Output;
}
Modular power functions