Trait snarkvm_wasm::Pow[][src]

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

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

Associated Types

Required methods

Implementors