removeWhere method
Removes all elements of this set that satisfy test
.
Implementation
void removeWhere(bool test(E element)) {
List toRemove = [];
for (E element in this) {
if (test(element)) toRemove.add(element);
}
removeAll(toRemove);
}