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