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)
108FixedMaxHeap<TKey> sharedIndices = new FixedMaxHeap<TKey>(_count, inputStream.KeyComparer); // an array used to track the sequence of indices leading up to the Nth index 321return Child.AsSequentialQuery(token).Take(_count); 325return wrappedChild.Skip(_count); 377return Math.Min(_childCount, _takeOrSkipOp._count); 381return Math.Max(_childCount - _takeOrSkipOp._count, 0); 398return _childQueryResults.GetElement(_takeOrSkipOp._count + index);