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
SequenceableCollection>>concat (which should really be renamed to #join) contains the following comment:
"In the special case of empty receiver, answer #()."
and then this code:
self isEmpty ifTrue: [^#()].
I am starting to think this is nonsense. #concat is MacLane's μ :: T²→T. In order for T² to make sense, the species of the outer collection must match the species of the inner collection.
The text was updated successfully, but these errors were encountered:
SequenceableCollection>>concat
(which should really be renamed to#join
) contains the following comment:and then this code:
I am starting to think this is nonsense.
#concat
is MacLane's μ :: T²→T. In order for T² to make sense, the species of the outer collection must match the species of the inner collection.The text was updated successfully, but these errors were encountered: