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)
91if (_indexedPredicate != null) 137Debug.Assert(_indexedPredicate == null || typeof(TKey) == typeof(int)); 138Func<TResult, TKey, bool>? convertedIndexedPredicate = (Func<TResult, TKey, bool>?)(object?)_indexedPredicate; 171if (_indexedPredicate != null) 173return Child.AsSequentialQuery(token).TakeWhile(_indexedPredicate); 180if (_indexedPredicate != null) 183return wrappedIndexedChild.SkipWhile(_indexedPredicate);