pub trait SquareRoot {
    type Output;

    fn square_root(&self) -> Self::Output;
}
Expand description

Unary operator for retrieving the square root of the value.

Required Associated Types

Required Methods

Trait Implementations

Returns the number of constants, public inputs, private inputs, and constraints.
Returns the mode of the output.

Implementors