The Trunk: Collections-ul.344.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Collections-ul.344.mcz

commits-2
Levente Uzonyi uploaded a new version of Collections to project The Trunk:
http://source.squeak.org/trunk/Collections-ul.344.mcz

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

Name: Collections-ul.344
Author: ul
Time: 21 March 2010, 5:54:02.747 pm
UUID: af46409f-8765-514a-ba19-c8611f0e4dce
Ancestors: Collections-nice.343

- deprecated SequenceableCollection >> #reverse, so it can become an in-place reverse method in the future

=============== Diff against Collections-nice.343 ===============

Item was changed:
  ----- Method: SequenceableCollection>>reverse (in category 'converting') -----
  reverse
+ "This method will be the in place version sometime"
+
+ self deprecated: 'Use #reversed'.
+ ^self reversed!
- ^ self reversed!