LruData

Type Alias LruData 

Source
type LruData<K, V> = HashMap<K, (Arc<Mutex<LruNode<K>>>, V)>;
Expand description

Maps the key to the LruNode in queue and the value.

Aliased Typeยง

struct LruData<K, V> { /* private fields */ }