The Trunk: Collections-nice.184.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-nice.184.mcz

commits-2
Nicolas Cellier uploaded a new version of Collections to project The Trunk:
http://source.squeak.org/trunk/Collections-nice.184.mcz

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

Name: Collections-nice.184
Author: nice
Time: 9 November 2009, 12:13:57 pm
UUID: 06a26ea1-20b5-4e30-8452-7b74fef5afba
Ancestors: Collections-ar.183

clean-up isSelfEvaluating

=============== Diff against Collections-ar.183 ===============

Item was removed:
- ----- Method: Array>>isSelfEvaluating (in category 'self evaluating') -----
- isSelfEvaluating
- ^ (self allSatisfy: [:each | each isSelfEvaluating]) and: [self class == Array]!

Item was removed:
- ----- Method: Interval>>isSelfEvaluating (in category 'self evaluating') -----
- isSelfEvaluating
- ^ self class == Interval!

Item was removed:
- ----- Method: RunArray>>isSelfEvaluating (in category 'self evaluating') -----
- isSelfEvaluating
- ^ self class == RunArray and: [values isSelfEvaluating]!

Item was removed:
- ----- Method: Association>>isSelfEvaluating (in category 'self evaluating') -----
- isSelfEvaluating
- ^ self class == Association and: [self key isSelfEvaluating and: [self value isSelfEvaluating]]!