1 write to predicate
System.Core (1)
System\Linq\Enumerable.cs (1)
216
this.
predicate
= predicate;
4 references to predicate
System.Core (4)
System\Linq\Enumerable.cs (4)
220
return new WhereListIterator<TSource>(source,
predicate
);
232
if (
predicate
(item)) {
244
return new WhereSelectListIterator<TSource, TResult>(source,
predicate
, selector);
248
return new WhereListIterator<TSource>(source, CombinePredicates(this.
predicate
, predicate));