1 write to _indexedPredicate
System.Linq.Parallel (1)
System\Linq\Parallel\QueryOperators\Unary\TakeOrSkipWhileQueryOperator.cs (1)
75
_indexedPredicate
= indexedPredicate;
7 references to _indexedPredicate
System.Linq.Parallel (7)
System\Linq\Parallel\QueryOperators\Unary\TakeOrSkipWhileQueryOperator.cs (7)
91
if (
_indexedPredicate
!= null)
137
Debug.Assert(
_indexedPredicate
== null || typeof(TKey) == typeof(int));
138
Func<TResult, TKey, bool>? convertedIndexedPredicate = (Func<TResult, TKey, bool>?)(object?)
_indexedPredicate
;
171
if (
_indexedPredicate
!= null)
173
return Child.AsSequentialQuery(token).TakeWhile(
_indexedPredicate
);
180
if (
_indexedPredicate
!= null)
183
return wrappedIndexedChild.SkipWhile(
_indexedPredicate
);