Trait nekolib::traits::Ring

source ·
pub trait Ring {
    type Set: Eq;
    type Additive: CommutativeGroup<Set = Self::Set>;
    type Multiplicative: Monoid<Set = Self::Set> + Distributive<Self::Additive>;

    // Required methods
    fn additive(&self) -> &Self::Additive;
    fn multiplicative(&self) -> &Self::Multiplicative;

    // Provided methods
    fn add(&self, x: Self::Set, y: Self::Set) -> Self::Set { ... }
    fn zero(&self) -> Self::Set { ... }
    fn neg(&self, x: Self::Set) -> Self::Set { ... }
    fn mul(&self, x: Self::Set, y: Self::Set) -> Self::Set { ... }
    fn one(&self) -> Self::Set { ... }
}
Expand description

環。

集合 RR と二つの二項演算 \circ, \ast の組 (R,,)(R, \circ, \ast) であり、次の性質を満たす。

  • (R,,0)(R, \circ, 0) は可換群をなす。
  • (R,,1)(R, \ast, 1) はモノイドをなす。
  • 乗法 \ast は加法 \circ について分配法則を満たす。

Required Associated Types§

source

type Set: Eq

集合 RR に対応する型。

source

type Additive: CommutativeGroup<Set = Self::Set>

可換群 (R,,0)(R, \circ, 0) に対応する型。

source

type Multiplicative: Monoid<Set = Self::Set> + Distributive<Self::Additive>

モノイド (R,,1)(R, \ast, 1) に対応する型。

Required Methods§

source

fn additive(&self) -> &Self::Additive

source

fn multiplicative(&self) -> &Self::Multiplicative

Provided Methods§

source

fn add(&self, x: Self::Set, y: Self::Set) -> Self::Set

xyx \circ y を返す。

source

fn zero(&self) -> Self::Set

加法 \circ の単位元 00 を返す。

source

fn neg(&self, x: Self::Set) -> Self::Set

加法 \circ に関する xx の逆元 x-x を返す。

source

fn mul(&self, x: Self::Set, y: Self::Set) -> Self::Set

xyx \ast y を返す。

source

fn one(&self) -> Self::Set

乗法 \ast の単位元 11 を返す。

Implementors§