pub trait Reciprocal {
    type Output;

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

Finds the reciprocal (multiplicative inverse) of a number.

Required Associated Types

Required Methods

Implementors