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
When combining AppliedFragments, should we intercalcate a space? I think technically that would violate the Monoid rules but I think that is what callers would want 99% of the time.
/** `AppliedFragment` is a monoid. */implicitvalMonoidAppFragment:Monoid[AppliedFragment] =newMonoid[AppliedFragment] {
defcombine(x: AppliedFragment, y: AppliedFragment):AppliedFragment= x |+| y
defempty:AppliedFragment=AppliedFragment.empty
}
The text was updated successfully, but these errors were encountered:
When combining AppliedFragments, should we intercalcate a space? I think technically that would violate the Monoid rules but I think that is what callers would want 99% of the time.
The text was updated successfully, but these errors were encountered: