where method

Iterable<E> where(
  1. bool test(
    1. E
    )
)

Implementation

Iterable<E> where(bool Function(E) test) => _iterable.where(test);