where method

  1. @override
Iterable<T> where(
  1. Predicate<T> test
)
override

Returns an ISet with all elements that satisfy the predicate test.

Implementation

@override
Iterable<T> where(Predicate<T> test) => _s.where(test);