Trait snarkvm_gadgets::traits::integers::pow::Pow[][src]

pub trait Pow<F: Field, Rhs = Self> where
    Self: Sized
{ type ErrorType; fn pow<CS: ConstraintSystem<F>>(
        &self,
        cs: CS,
        other: &Self
    ) -> Result<Self, Self::ErrorType>; }
Expand description

Returns exponentiation of self ** other in the constraint system.

Associated Types

Required methods

Implementors