pub trait Pow<Exponent> {
    // Required method
    fn pow(&self, exponent: &Exponent) -> Self;
}
Expand description

Constant-time exponentiation.

Required Methods§

fn pow(&self, exponent: &Exponent) -> Self

Raises to the exponent power.

Implementors§

§

impl<T, Exponent> Pow<Exponent> for Twhere T: PowBoundedExp<Exponent>, Exponent: Bounded,