1 write to m_takeOrSkipOp
System.Core (1)
System\Linq\Parallel\QueryOperators\Unary\TakeOrSkipQueryOperator.cs (1)
358m_takeOrSkipOp = takeOrSkipOp;
5 references to m_takeOrSkipOp
System.Core (5)
System\Linq\Parallel\QueryOperators\Unary\TakeOrSkipQueryOperator.cs (5)
374if (m_takeOrSkipOp.m_take) 376return Math.Min(m_childCount, m_takeOrSkipOp.m_count); 380return Math.Max(m_childCount - m_takeOrSkipOp.m_count, 0); 391if (m_takeOrSkipOp.m_take) 397return m_childQueryResults.GetElement(m_takeOrSkipOp.m_count + index);