forEachKey method

void forEachKey (void f(K key, C value))
inherited

Applies f to each {key, Iterable<value>} pair of the multimap.

It is an error to add or remove keys from the map during iteration.

Implementation

void forEachKey(void f(K key, C value)) => _map.forEach(f);