pub trait MulRecip {
    type Output;

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

乗法の逆元を定義する。

Required Associated Types§

source

type Output

返り値の型。

Required Methods§

source

fn mul_recip(self) -> Self::Output

乗法における $x$ の逆元 $x^{-1}$ を返す。

Implementors§