Happy !

hernan / SortedDictionary

Project infos

License MIT
Tags collection
Creation date 2013-07-18
Website

Monticello registration

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.