filterWhere method

Iterable<T> filterWhere(
  1. ConditionTester<T> test
)

Filters elements based on a predicate.

Implementation

Iterable<T> filterWhere(ConditionTester<T> test) => where(test);