1 write to m_indexedPredicate
System.Core (1)
System\Linq\Parallel\QueryOperators\Unary\TakeOrSkipWhileQueryOperator.cs (1)
79m_indexedPredicate = indexedPredicate;
7 references to m_indexedPredicate
System.Core (7)
System\Linq\Parallel\QueryOperators\Unary\TakeOrSkipWhileQueryOperator.cs (7)
95if (m_indexedPredicate != null) 142Contract.Assert(m_indexedPredicate == null || typeof(TKey) == typeof(int)); 143Func<TResult, TKey, bool> convertedIndexedPredicate = (Func<TResult, TKey, bool>)(object)m_indexedPredicate; 176if (m_indexedPredicate != null) 178return Child.AsSequentialQuery(token).TakeWhile(m_indexedPredicate); 184if (m_indexedPredicate != null) 187return wrappedIndexedChild.SkipWhile(m_indexedPredicate);