entries property

Iterable<(int, InspectEntry)> get entries

Returns an iterable of all InspectEntrys in the cache. The iterable contains tuples of the form (id, entry) where id is the id of the entry and entry is the entry itself.

Implementation

Iterable<(int, InspectEntry)> get entries => _cache.values;