Trait alga::general::AbstractGroupAbelian [−][src]
An Abelian group is a commutative group.
An commutative group is a set with a closed commutative and associative binary operation with the divisibility property and an identity element.
Commutativity
∀ a, b ∈ Self, a ∘ b = b ∘ a
Provided methods
fn prop_is_commutative_approx(args: (Self, Self)) -> bool where
Self: RelativeEq,
[src]
Self: RelativeEq,
Returns true
if the operator is commutative for the given argument tuple. Approximate
equality is used for verifications.
fn prop_is_commutative(args: (Self, Self)) -> bool where
Self: Eq,
[src]
Self: Eq,
Returns true
if the operator is commutative for the given argument tuple.
Implementations on Foreign Types
impl<N> AbstractGroupAbelian<Multiplicative> for Complex<N> where
N: Num + Clone + ClosedNeg,
[src]
N: Num + Clone + ClosedNeg,
impl<N> AbstractGroupAbelian<Additive> for Complex<N> where
N: AbstractGroupAbelian<Additive>,
[src]
N: AbstractGroupAbelian<Additive>,