[squeak-dev] The Trunk: 60Deprecated-mt.81.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Oct 14 12:22:02 UTC 2020


Marcel Taeumel uploaded a new version of 60Deprecated to project The Trunk:
http://source.squeak.org/trunk/60Deprecated-mt.81.mcz

==================== Summary ====================

Name: 60Deprecated-mt.81
Author: mt
Time: 14 October 2020, 2:22:01.292569 pm
UUID: a2fefed6-c5dc-564a-9091-6e4d1d8ca3f8
Ancestors: 60Deprecated-mt.80

Complements Collections-mt.918

=============== Diff against 60Deprecated-mt.80 ===============

Item was added:
+ ----- Method: HashedCollection>>doWithIndex: (in category '*60Deprecated-enumerating') -----
+ doWithIndex: elementAndIndexBlock
+ 
+ 	self flag: #deprecated. "Use the new version with consistent naming."
+ 	^ self withIndexDo: elementAndIndexBlock!

Item was added:
+ ----- Method: SequenceableCollection>>collectWithIndex: (in category '*60Deprecated-enumerating') -----
+ collectWithIndex: elementAndIndexBlock
+ 
+ 	self flag: #deprecated. "Use the new version with consistent naming."
+ 	^ self withIndexCollect: elementAndIndexBlock!

Item was added:
+ ----- Method: SequenceableCollection>>doWithIndex: (in category '*60Deprecated-enumerating') -----
+ doWithIndex: elementAndIndexBlock
+ 
+ 	self flag: #deprecated. "Use the new version with consistent naming."
+ 	^ self withIndexDo: elementAndIndexBlock!



More information about the Squeak-dev mailing list