lib: rename IndexedCollection to Sequence
[nit.git] / lib / standard / collection / list.nit
index ec803ba..3b11a6b 100644 (file)
@@ -17,7 +17,7 @@ import abstract_collection
 
 # Double linked lists.
 class List[E]
-special IndexedCollection[E]
+special Sequence[E]
 # Access
        redef fun [](index) do return get_node(index).item