Expand description
A linked hash map ordered by insertion which can be reordered by swapping, useful as a simple priority queue (e.g. an LFU or LRU cache).
Structsยง
- Into
Iter - An iterator over the contents of a
LinkedHashMap
- Iter
- An iterator over the entries in a
LinkedHashMap
- Keys
- An iterator over the keys in a
LinkedHashMap
- Linked
Hash Map - A hash map in insertion order which can be reordered using
Self::bump
andSelf::swap
. - Values
- An iterator over the values in a
LinkedHashMap