[][src]Crate ordered_map

Structs

Items
Keys
OrderedMap

An OrderedMap is like a std::collections::HashMap, but it is sorted according to the value in descending order. It doesn't require the value of the map, V, to be comparable, the comparision of the value is done on C, which is the return value of extract_comparable(&V).

Values