Module rustc_data_structures::sorted_map[][src]

Structs

SortedMap

SortedMap is a data structure with similar characteristics as BTreeMap but slightly different trade-offs: lookup, inseration, and removal are O(log(N)) and elements can be iterated in order cheaply.