Associative 2-term operation. All instances of SemiGroup must satisfy following conditions:
SemiGroup
S
x
y
z
S.combine(S.combine(x, y), z)
S.combine(x, S.combine(y, z))
Readonly
Generated using TypeDoc
Associative 2-term operation. All instances of
SemiGroup
must satisfy following conditions:S
is aSemiGroup
, for allx
,y
andz
,S.combine(S.combine(x, y), z)
equals toS.combine(x, S.combine(y, z))
.