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
I'm not so sure about the monoid section, where it's stated that:
Array concatenation also forms a monoid
With the example:
[1,2].concat([3,4])
I don't feel like array concatenation satisfies "associativity" at all, since a.concat(b) clearly differs from b.concat(a). Can someone explain this for me?
The text was updated successfully, but these errors were encountered:
I'm not so sure about the monoid section, where it's stated that:
With the example:
I don't feel like array concatenation satisfies "associativity" at all, since
a.concat(b)
clearly differs fromb.concat(a)
. Can someone explain this for me?The text was updated successfully, but these errors were encountered: