Given a sequence of as
, combine them using the monoid and return the total.
Given a sequence of as
, combine them using the monoid and return the total.
Given a sequence of as
, combine them using the semigroup and return the total.
Given a sequence of as
, combine them using the semigroup and return the total.
If the sequence is empty, returns None. Otherwise, returns Some(total).
Return a
combined with itself n
times.
Tests if a
is the identity.
Tests if a
is the identity.
CMonoid represents a commutative monoid.
A monoid is commutative if for all x and y, x |+| y === y |+| x.