Trait Inv

Source
pub trait Inv {
    type Output;

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

乗法の逆元

Required Associated Types§

Source

type Output

invの結果の型

Required Methods§

Source

fn inv(self) -> Self::Output

selfの乗法の逆元を求める。

Implementors§