entries property

  1. @override
Iterable<MapEntry<Node, V>> entries
inherited

The map entries of this.

Implementation

@override
Iterable<MapEntry<K, V>> get entries {
  doAutoPurge();
  return _map.entries;
}