1 write to predicate
System.Core (1)
System\Linq\Enumerable.cs (1)
177
this.
predicate
= predicate;
4 references to predicate
System.Core (4)
System\Linq\Enumerable.cs (4)
181
return new WhereArrayIterator<TSource>(source,
predicate
);
189
if (
predicate
(item)) {
200
return new WhereSelectArrayIterator<TSource, TResult>(source,
predicate
, selector);
204
return new WhereArrayIterator<TSource>(source, CombinePredicates(this.
predicate
, predicate));