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