entries property

Iterable<CacheEntry<K, V, U>> entries

All items in the cache, in CacheEntry form.

Implementation

Iterable<CacheEntry<K, V, U>> get entries =>
    _registry.values.map((e) => CacheEntry.build(_items[e.key]!, e));