removeWhere abstract method

ComputedMap<K, V> removeWhere(
  1. bool test(
    1. K key,
    2. V value
    )
)

Reactively removes all entries satisfying test from this reactive map.

Implementation

ComputedMap<K, V> removeWhere(bool Function(K key, V value) test);