Expand description
Simple sorted list collection like the one found in the .NET collections library.
Structsยง
- Into
Tuples - IntoIterator version of
Tuples - Sorted
List SortedListstores multiple(K, V)tuples ordered by K, then in the order of insertion forV. Implmented using twoVecthis should be fast for in-order inserts and quite bad in the worst-case of reverse insertion order.- Tuples
- Iterator over tuples stored in
SortedList