You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
datatype Semigroup a of
Mk of
(<>): a -> a -> a;
end;
end;
datatype Monoid a <: Semigroup a of
Mk <: Mk.Semigroup of
empty: a;
end;
end;
datatype Group a <: Monoid a of
Mk <: Mk.Monoid of
invert: a -> a;
end;
end;
Activity