1 write to _predicate
System.Linq (1)
System\Linq\Where.cs (1)
105_predicate = predicate;
11 references to _predicate
System.Linq (11)
System\Linq\Where.cs (4)
108private protected override Iterator<TSource> Clone() => new IEnumerableWhereIterator<TSource>(_source, _predicate); 134if (_predicate(item)) 149new IEnumerableWhereSelectIterator<TSource, TResult>(_source, _predicate, selector); 152new IEnumerableWhereIterator<TSource>(_source, Utilities.CombinePredicates(_predicate, predicate));
System\Linq\Where.SpeedOpt.cs (7)
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; 155Func<TSource, bool> predicate = _predicate;