Module collections::treemap[src]
An ordered map and set implemented as self-balancing binary search
trees. The only requirement for the types is that the key implements
Ord.
Structs
| DifferenceItems | Lazy iterator producing elements in the set difference (in-order) |
| Entries | Lazy forward iterator over a map |
| IntersectionItems | Lazy iterator producing elements in the set intersection (in-order) |
| MoveEntries | Lazy forward iterator over a map that consumes the map while iterating |
| MutEntries | Lazy forward iterator over a map that allows for the mutation of the values. |
| RevEntries | Lazy backward iterator over a map |
| RevMutEntries | Lazy backward iterator over a map |
| RevSetItems | Lazy backward iterator over a set |
| SetItems | Lazy forward iterator over a set |
| SymDifferenceItems | Lazy iterator producing elements in the set symmetric difference (in-order) |
| TreeMap | |
| TreeSet | A implementation of the |
| UnionItems | Lazy iterator producing elements in the set union (in-order) |
Type Definitions
| MoveSetItems | Lazy forward iterator over a set that consumes the set while iterating |