Skip to content

Commit 8a9e356

Browse files
committed
Explain benchmarking exclusion
1 parent 26dc476 commit 8a9e356

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,11 @@ You may see that `DictionaryList<T>` is an all-rounded, midway solution between
166166

167167
As part of the benchmark, you may also see that `SortedDictionary<TKey,TValue>` is generally a bad type to use compared to other similar types.
168168

169+
The following collection types are excluded from the benchmarking:
170+
- `OrderedDictionary`: ambiguity between intended `<int,T>` usage and `this[int]` syntax
171+
- `LinkedList<T>`: unfair/impossible comparison due to lack of index access
172+
- `SortedList<int,T>`: too similar to `SortedDictionary<int,T>`, probably has similar performance
173+
169174
### Sample benchmarking results
170175
The benchmark is run with version `0.1.2` of this library.
171176

0 commit comments

Comments
 (0)