Trait scirust::algebra::structure::monoid::CommutativeMonoidMulPartial [] [src]

pub trait CommutativeMonoidMulPartial: MonoidMulPartial {
    fn prop_is_commutative(a: Self, b: Self) -> bool { ... }
}

Commutative monoid with a multiplication operation with partial equivalence

Provided Methods

fn prop_is_commutative(a: Self, b: Self) -> bool

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

Implementors