pub trait MulRecip { type Output; // Required method fn mul_recip(self) -> Self::Output; }
乗法の逆元を定義する。
返り値の型。
乗法における $x$ の逆元 $x^{-1}$ を返す。