1 write to _predicate
System.Linq (1)
System\Linq\Where.cs (1)
99
_predicate
= predicate;
10 references to _predicate
System.Linq (10)
System\Linq\Where.cs (4)
102
private protected override Iterator<TSource> Clone() => new IEnumerableWhereIterator<TSource>(_source,
_predicate
);
128
if (
_predicate
(item))
143
new IEnumerableWhereSelectIterator<TSource, TResult>(_source,
_predicate
, selector);
146
new IEnumerableWhereIterator<TSource>(_source, CombinePredicates(
_predicate
, predicate));
System\Linq\Where.SpeedOpt.cs (6)
24
if (
_predicate
(item))
41
Func<TSource, bool> predicate =
_predicate
;
61
Func<TSource, bool> predicate =
_predicate
;
78
Func<TSource, bool> predicate =
_predicate
;
99
Func<TSource, bool> predicate =
_predicate
;
132
Func<TSource, bool> predicate =
_predicate
;