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)
102private protected override Iterator<TSource> Clone() => new IEnumerableWhereIterator<TSource>(_source, _predicate); 128if (_predicate(item)) 143new IEnumerableWhereSelectIterator<TSource, TResult>(_source, _predicate, selector); 146new IEnumerableWhereIterator<TSource>(_source, CombinePredicates(_predicate, predicate));
System\Linq\Where.SpeedOpt.cs (6)
24if (_predicate(item)) 41Func<TSource, bool> predicate = _predicate; 61Func<TSource, bool> predicate = _predicate; 78Func<TSource, bool> predicate = _predicate; 99Func<TSource, bool> predicate = _predicate; 132Func<TSource, bool> predicate = _predicate;