pub trait Recip: PartialRecip {
// Provided method
fn recip(&self, x: Self::Set) -> Self::Set { ... }
}
Expand description
逆元が常に存在する。
二項演算 が、常に逆元を持つことを示す。 この を と書く。
Examples
use nekolib::traits::{Magma, Monoid, Recip};
use nekolib::utils::OpAdd;
let op_add = OpAdd::default();
let x = 3;
let y = op_add.recip(x);
assert_eq!(op_add.op(x, y), 0);