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