removeWhere method
Implementation
void removeWhere(bool Function(K key) test) {
final List<K> doomed = _entries.keys.where(test).toList();
for (final K key in doomed) {
remove(key);
}
}
void removeWhere(bool Function(K key) test) {
final List<K> doomed = _entries.keys.where(test).toList();
for (final K key in doomed) {
remove(key);
}
}