3 instantiations of WhereListIterator
System.Core (3)
System\Linq\Enumerable.cs (3)
20
if (source is List<TSource>) return new
WhereListIterator
<TSource>((List<TSource>)source, predicate);
220
return new
WhereListIterator
<TSource>(source, predicate);
248
return new
WhereListIterator
<TSource>(source, CombinePredicates(this.predicate, predicate));