@@ -12,15 +12,15 @@ See [```IndexableCollection<T>```](Collections/IndexableCollection/IndexableColl
1212
1313| Index class| Class implementing the index| Unique| Sorted| Enumerable| T this[ int index] |
1414| -----------| ----------------------------| ------| ------| ----------| -----------------|
15- | [ ``` LinkedListIndex ``` ] ( Collections/IndexableCollection/LinkedListIndex.cs ) | LinkedList<T >| false| false| true| false|
16- | [ ``` ListIndex ``` ] ( Collections/IndexableCollection/LinkedListIndex.cs ) | List<T >| false| false| true| true|
17- | [ ``` NonUniqueIndex ``` ] ( Collections/IndexableCollection/NonUniqueIndex.cs ) | IDictionary<TKey, ICollection<T >>| false| true/false| false| false|
15+ | [ ``` LinkedListIndex<T> ``` ] ( Collections/IndexableCollection/LinkedListIndex.cs ) | LinkedList<T >| false| false| true| false|
16+ | [ ``` ListIndex<T> ``` ] ( Collections/IndexableCollection/LinkedListIndex.cs ) | List<T >| false| false| true| true|
17+ | [ ``` NonUniqueIndex<TKey,T> ``` ] ( Collections/IndexableCollection/NonUniqueIndex.cs ) | IDictionary<TKey, ICollection<T >>| false| true/false| false| false|
1818| [ ``` SequenceIndex ``` ] ( Collections/IndexableCollection/SequenceIndex.cs ) | IDictionary<>| true| true/false| false| false|
19- | [ ``` UniqueIndex ``` ] ( Collections/IndexableCollection/UniqueIndex.cs ) | Dictionary<>| false| false| false| false|
20- | ``` UniqueIndex ``` | SortedDictionary<>| false| true| false| false|
21- | [ ``` UniqueListIndex ``` ] ( Collections/IndexableCollection/UniqueListIndex.cs ) | IList<T >| true| true/false| true| false|
19+ | [ ``` UniqueIndex<TKey,T> ``` ] ( Collections/IndexableCollection/UniqueIndex.cs ) | Dictionary<>| false| false| false| false|
20+ | ``` UniqueIndex<TKey,T> ``` | SortedDictionary<>| false| true| false| false|
21+ | [ ``` UniqueListIndex<T> ``` ] ( Collections/IndexableCollection/UniqueListIndex.cs ) | IList<T >| true| true/false| true| false|
2222
23- ###How to create memory indexes for read only collections
23+ ###How to create memory indexes for static ( read only) collections
2424
2525Input: an enumerable item collection (sorted/not sorted, unique/not unique)
2626
0 commit comments