File tree Expand file tree Collapse file tree 4 files changed +16
-0
lines changed
Grease-Pharo90-Core.package/SequenceableCollection.extension/instance
Grease-Squeak6-Core.package/SequenceableCollection.extension/instance Expand file tree Collapse file tree 4 files changed +16
-0
lines changed Original file line number Diff line number Diff line change 11* Grease - Pharo90 - Core
22beginsWithSubCollection: aSequenceableCollection
3+
4+ self
5+ greaseDeprecatedApi: ' SequenceableCollection>>#beginsWithSubCollection:'
6+ details: ' Use SequenceableCollection>>#greaseBeginsWith:' .
37 " Some platforms implement #beginsWith: to answer true for an empty argument."
48 ^ self beginsWith: aSequenceableCollection
Original file line number Diff line number Diff line change 11* Grease - Pharo90 - Core
22endsWithSubCollection: aSequenceableCollection
3+
4+ self
5+ greaseDeprecatedApi: ' SequenceableCollection>>#endsWithSubCollection:'
6+ details: ' Use SequenceableCollection>>#greaseEndsWith:' .
37 " Some platforms implement #endsWith: to answer true for an empty argument."
48 ^ self endsWith: aSequenceableCollection
Original file line number Diff line number Diff line change 11* grease- squeak6- core
22beginsWithSubCollection: aSequenceableCollection
3+ self
4+ greaseDeprecatedApi: ' SequenceableCollection>>#beginsWithSubCollection:'
5+ details: ' Use SequenceableCollection>>#greaseBeginsWith:' .
36 " Some platforms implement #beginsWith: to answer true for an empty argument."
7+ aSequenceableCollection isEmpty ifTrue: [ ^ false ].
48 ^ self beginsWith: aSequenceableCollection
Original file line number Diff line number Diff line change 11* grease- squeak6- core
22endsWithSubCollection: aSequenceableCollection
3+ self
4+ greaseDeprecatedApi: ' SequenceableCollection>>#endsWithSubCollection:'
5+ details: ' Use SequenceableCollection>>#greaseEndsWith:' .
36 " Some platforms implement #endsWith: to answer true for an empty argument."
7+ aSequenceableCollection isEmpty ifTrue: [ ^ false ].
48 ^ self endsWith: aSequenceableCollection
You can’t perform that action at this time.
0 commit comments