where method

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

Returns a new lazy Iterable with all elements that satisfy the predicate test.

Implementation

@override
Iterable<T> where(bool Function(T) test) => _items.where(test);