FilterRange<T> constructor

FilterRange<T>(
  1. Iterable<T> _iterable,
  2. bool _predicate(
    1. T
    )
)

Creates a FilterRange that conditionally yields elements of _iterable matching _predicate.

Implementation

FilterRange(this._iterable, this._predicate);