1 write to m_count
System.Core (1)
System\Linq\Parallel\QueryOperators\Unary\TakeOrSkipQueryOperator.cs (1)
57
m_count
= count;
6 references to m_count
System.Core (6)
System\Linq\Parallel\QueryOperators\Unary\TakeOrSkipQueryOperator.cs (6)
112
FixedMaxHeap<TKey> sharedIndices = new FixedMaxHeap<TKey>(
m_count
, inputStream.KeyComparer); // an array used to track the sequence of indices leading up to the Nth index
320
return Child.AsSequentialQuery(token).Take(
m_count
);
324
return wrappedChild.Skip(
m_count
);
376
return Math.Min(m_childCount, m_takeOrSkipOp.
m_count
);
380
return Math.Max(m_childCount - m_takeOrSkipOp.
m_count
, 0);
397
return m_childQueryResults.GetElement(m_takeOrSkipOp.
m_count
+ index);