entries property

Iterable<MapEntry<K, int>> entries

Returns the entries in the counting table.

Implementation

Iterable<MapEntry<K, int>> get entries =>
    _table.values.map((e) => e.asMapEntry);