4 references to IEnumerableWhereIterator
System.Linq (4)
System\Linq\Iterator.cs (1)
103new IEnumerableWhereIterator<TSource>(this, predicate);
System\Linq\Where.cs (3)
44return new IEnumerableWhereIterator<TSource>(source, predicate); 102private protected override Iterator<TSource> Clone() => new IEnumerableWhereIterator<TSource>(_source, _predicate); 146new IEnumerableWhereIterator<TSource>(_source, CombinePredicates(_predicate, predicate));