LfuCache<K, V> constructor

LfuCache<K, V>({
  1. required Storage<K, V>? storage,
  2. required int capacity,
})

Implementation

LfuCache({required Storage<K, V>? storage, required int capacity})
    : super(storage: storage, capacity: capacity);