1 write to _predicate
System.Linq (1)
System\Linq\Where.cs (1)
163_predicate = predicate;
11 references to _predicate
System.Linq (11)
System\Linq\Where.cs (4)
167new ArrayWhereIterator<TSource>(_source, _predicate); 178if (_predicate(item)) 190new ArrayWhereSelectIterator<TSource, TResult>(_source, _predicate, selector); 193new ArrayWhereIterator<TSource>(_source, CombinePredicates(_predicate, predicate));
System\Linq\Where.SpeedOpt.cs (7)
171public override int GetCount(bool onlyIfCheap) => GetCount(onlyIfCheap, _source, _predicate); 196public override TSource[] ToArray() => ToArray(_source, _predicate); 217public override List<TSource> ToList() => ToList(_source, _predicate); 240Func<TSource, bool> predicate = _predicate; 258Func<TSource, bool> predicate = _predicate; 277Func<TSource, bool> predicate = _predicate; 300Func<TSource, bool> predicate = _predicate;