1 write to _count
System.Linq.Parallel (1)
System\Linq\Parallel\QueryOperators\Unary\TakeOrSkipQueryOperator.cs (1)
53
_count
= count;
6 references to _count
System.Linq.Parallel (6)
System\Linq\Parallel\QueryOperators\Unary\TakeOrSkipQueryOperator.cs (6)
108
FixedMaxHeap<TKey> sharedIndices = new FixedMaxHeap<TKey>(
_count
, inputStream.KeyComparer); // an array used to track the sequence of indices leading up to the Nth index
321
return Child.AsSequentialQuery(token).Take(
_count
);
325
return wrappedChild.Skip(
_count
);
377
return Math.Min(_childCount, _takeOrSkipOp.
_count
);
381
return Math.Max(_childCount - _takeOrSkipOp.
_count
, 0);
398
return _childQueryResults.GetElement(_takeOrSkipOp.
_count
+ index);