Structs§
- Descending
Items - Descending
Keys - Descending
Values - Ordered
Map - An
OrderedMap
is like astd::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 comparison of the value is done onC
, which is the return value ofextract_comparable(&V)
.