1 write to _predicate
System.Linq (1)
System\Linq\Where.cs (1)
211
_predicate
= predicate;
10 references to _predicate
System.Linq (10)
System\Linq\Where.cs (4)
215
new ListWhereIterator<TSource>(_source,
_predicate
);
229
if (
_predicate
(item))
244
new ListWhereSelectIterator<TSource, TResult>(_source,
_predicate
, selector);
247
new ListWhereIterator<TSource>(_source, CombinePredicates(
_predicate
, predicate));
System\Linq\Where.SpeedOpt.cs (6)
286
public override int GetCount(bool onlyIfCheap) => ArrayWhereIterator<TSource>.GetCount(onlyIfCheap, CollectionsMarshal.AsSpan(_source),
_predicate
);
288
public override TSource[] ToArray() => ArrayWhereIterator<TSource>.ToArray(CollectionsMarshal.AsSpan(_source),
_predicate
);
290
public override List<TSource> ToList() => ArrayWhereIterator<TSource>.ToList(CollectionsMarshal.AsSpan(_source),
_predicate
);
294
Func<TSource, bool> predicate =
_predicate
;
312
Func<TSource, bool> predicate =
_predicate
;
331
Func<TSource, bool> predicate =
_predicate
;