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