[squeak-dev] The Trunk: Collections-cmm.985.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Feb 2 21:56:58 UTC 2022


Chris Muller uploaded a new version of Collections to project The Trunk:
http://source.squeak.org/trunk/Collections-cmm.985.mcz

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

Name: Collections-cmm.985
Author: cmm
Time: 2 February 2022, 3:56:57.307776 pm
UUID: 665d5e7b-a80a-41b1-bad8-4f3c6cfa866c
Ancestors: Collections-cmm.984

Forgot to delete the override in cmm.984.

=============== Diff against Collections-cmm.984 ===============

Item was removed:
- ----- Method: OrderedDictionary>>= (in category 'comparing') -----
- = anObject
- 	"Two ordered dictionaries are equal if
- 	 (a) they are the same 'kind' of thing.
- 	 (b) they have the same set of keys in the same order.
- 	 (c) for each (common) key, they have the same value"
- 
- 	self == anObject ifTrue: [ ^true ].
- 	self species == anObject species ifFalse: [ ^false ].
- 	self size = anObject size ifFalse: [ ^false ].
- 	self keys = anObject keys ifFalse: [ ^false].
- 	self associationsDo: [ :association |
- 		(anObject at: association key ifAbsent: [ ^false ]) = association value
- 			ifFalse: [ ^false ] ].
- 	^true!



More information about the Squeak-dev mailing list