Crate sorted_list [] [src]

Simple sorted list collection like the one found in the .NET collections library.

Structs

IntoTuples

IntoIterator version of Tuples

SortedList

SortedList stores multiple (K, V) tuples ordered by K, then in the order of insertion for V. Implmented using two Vec this 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