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
The extension implementation of SequenceableCollection>>#groupsOf: uses a collection made with self species new to hold groups, however this is problematic when the receiver doesn't support the add: message, such as subclasses of ArrayedCollection.
This method has since been defined in Spec.
Also, I didn't find any sender in the current version of this repo.
Thus, I suggest deleting the method.
Although, if there is still a use for it, relying on Spec will not make it backwards compatible with earlier Pharo versions. Instead, self species new should be replaced with OrderedCollection new.
The text was updated successfully, but these errors were encountered:
The extension implementation of SequenceableCollection>>#groupsOf: uses a collection made with
self species new
to hold groups, however this is problematic when the receiver doesn't support theadd:
message, such as subclasses ofArrayedCollection
.This method has since been defined in Spec.
Also, I didn't find any sender in the current version of this repo.
Thus, I suggest deleting the method.
Although, if there is still a use for it, relying on Spec will not make it backwards compatible with earlier Pharo versions. Instead,
self species new
should be replaced withOrderedCollection new
.The text was updated successfully, but these errors were encountered: