Trait alga::general::RingCommutative [] [src]

pub trait RingCommutative: Ring {
    fn prop_mul_is_commutative(args: (Self, Self)) -> bool where Self: ApproxEq { ... }
}

A ring with a commutative multiplication.

∀ a, b ∈ Self, a × b ≈ b × a

Provided Methods

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

Implementors