Skip to main content

MulRecip

Trait MulRecip 

Source
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§