logo
pub trait Invert {
    type Output;

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

Perform an inversion on a field element (i.e. base field element or scalar)

Required Associated Types

Field element type

Required Methods

Invert a field element.

Implementors