Happy !
hernan / SortedDictionary
About SortedDictionary
Instances of SortedDictionary behave as Dictionaries in all respects except that added elements are sorted.
Example
| sd |
sd := SortedDictionary new.
sd at: 2 put: 'hola';
at: 1 put: 'hello';
at: 10 put: 'ciao';
yourself.
Installation
Gofer it
smalltalkhubUser: 'hernan' project: 'SortedDictionary';
package: 'SortedDictionary';
load.
