forEachKey abstract method
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 Function(K key, Iterable<V> value) f);
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.
void forEachKey(void Function(K key, Iterable<V> value) f);