Oct. 22, 2009
4:32 p.m.
This is related to http://code.google.com/p/pharo/issues/detail? id=1353
According to usage of classVarNames, a sorted Array would behave better
- same class as instVarNames (I remember such discussion in Pharo) - optimized without extra code cost (especially if keys are also an Array) - sorted Array do compare fast with = (better than Sets) - no need to sort a sorted Array, so half senders will be simplified
yes a lot of asSortedCollection everywhere. I'm in favor of integrating your changes.