removeWhere method

ISet<T> removeWhere(
  1. Predicate<T> test
)

Removes all elements of this set that satisfy test.

Implementation

ISet<T> removeWhere(Predicate<T> test) {
  return ISet._unsafeFromSet(unlock..removeWhere(test), config: config);
}