lru_map library

Classes

LinkedLruHashMap<K, V>
A linked hash-table based implementation of LruMap.
LruMap<K, V>
An implementation of a Map which has a maximum size and uses a Least Recently Used algorithm to remove items from the Map when the maximumSize is reached and new items are added.

Typedefs

LruRemove<V> = void Function(V value)