Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
4answers
126 views

Smalltalk: Sort a collection by two criteria

How can I sort a collection by two criteria in Cincom VisualWorks? Example: I have an OrderedCollection that contains persons, and want a new collection that sort the persons first by age, and then ...
0
votes
2answers
31 views

Find index in SortedCollection

I use this implementation of SortedCollection. >>> a = SortedCollection(key=itemgetter(1)) >>> a.insert_right(('A',5)) >>> a.insert_right(('B',3)) >>> ...