Trait alga::general::GroupAbelian [] [src]

pub trait GroupAbelian<O: Op>: Group<O> {
    fn prop_is_commutative(args: (Self, Self)) -> bool where Self: ApproxEq { ... }
}

An commutative group.

∀ a, b ∈ Self, a ∘ b = b ∘ a

Provided Methods

Returns true if the operator is commutative for the given argument tuple.

Implementors