4 instantiations of IEnumerableWhereIterator
System.Linq (4)
System\Linq\Iterator.cs (1)
101new IEnumerableWhereIterator<TSource>(this, predicate);
System\Linq\Where.cs (3)
50return new IEnumerableWhereIterator<TSource>(source, predicate); 108private protected override Iterator<TSource> Clone() => new IEnumerableWhereIterator<TSource>(_source, _predicate); 152new IEnumerableWhereIterator<TSource>(_source, Utilities.CombinePredicates(_predicate, predicate));