Trait alga::general::AbstractMonoid [] [src]

pub trait AbstractMonoid<O: Operator>: AbstractSemigroup<O> + Identity<O> {
    fn prop_operating_identity_element_is_noop_approx(args: (Self,)) -> bool
    where
        Self: ApproxEq
, { ... }
fn prop_operating_identity_element_is_noop(args: (Self,)) -> bool
    where
        Self: Eq
, { ... } }

A semigroup equipped with an identity element.

∃ e ∈ Self, ∀ a ∈ Self, e ∘ a = a ∘ e = a

Provided Methods

Checks whether operating with the identity element is a no-op for the given argument. Approximate equality is used for verifications.

Checks whether operating with the identity element is a no-op for the given argument.

Implementors