3 instantiations of WhereArrayIterator
System.Core (3)
System\Linq\Enumerable.cs (3)
19
if (source is TSource[]) return new
WhereArrayIterator
<TSource>((TSource[])source, predicate);
181
return new
WhereArrayIterator
<TSource>(source, predicate);
204
return new
WhereArrayIterator
<TSource>(source, CombinePredicates(this.predicate, predicate));