linked-list-with-iterator-0.1.1.0: A pure linked list which is mutable through iterators.

linked-list-with-iterator-0.1.1.0: A pure linked list which is mutable through iterators.

It's iternally implemented by IntMap or Map Integer, using Int or Integer as the iterator type respectly. Most of the operations cost O(lg N).

Each newly inserted element will consume a unique number and never reuse old numbers. Choose Int one if you're sure that there're no more than Int space times of insertions, or choose Integer one otherwise.

Modules