removeWhere method

  1. @override
void removeWhere (bool test(K key, V value))
override

Removes all entries of this map that satisfy the given predicate.

Implementation

@override
void removeWhere(bool test(K key, V value)) {
  _inverse.removeWhere((v, k) => test(k, v));
  _map.removeWhere(test);
}