Overall organization of Nemerle Standard Library:

 + Core      [module] - core library
 + List      [module] - list operations
 + Option    [module] - option (none or some)
 + Stack     [class]  - LIFO queues (stack) with amortized complexity O(n) 
                        where n is number of elements that pass through
                        the queue
 + Queue     [class]  - FIFO queues with amortized complexity O(n) where n
                        is number of elements that pass through the queue
 + Hashtable [class]  - type-safe hash tables wraper using .Net
                        framework hash tables
 