removeWhere method

IMapOfSets<K, V> removeWhere(
  1. bool predicate(
    1. K key,
    2. ISet<V> set
    )
)

Removes all entries (key:set pair) of this map that satisfy the given predicate.

Implementation

IMapOfSets<K, V> removeWhere(bool Function(K key, ISet<V> set) predicate) =>
    IMapOfSets<K, V>._unsafe(_mapOfSets.removeWhere(predicate), config);