Trait malachite_base::num::arithmetic::traits::Reciprocal

source ·
pub trait Reciprocal {
    type Output;

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

Finds the reciprocal (multiplicative inverse) of a number.

Required Associated Types§

Required Methods§

source

fn reciprocal(self) -> Self::Output

Implementors§