3 references to FixedMaxHeap
System.Linq.Parallel (3)
System\Linq\Parallel\Merging\OrderPreservingPipeliningMergeHelper.cs (1)
255_producerHeap = new FixedMaxHeap<Producer<TKey>>(partitionCount, producerComparer);
System\Linq\Parallel\QueryOperators\Unary\TakeOrSkipQueryOperator.cs (1)
108FixedMaxHeap<TKey> sharedIndices = new FixedMaxHeap<TKey>(_count, inputStream.KeyComparer); // an array used to track the sequence of indices leading up to the Nth index
System\Linq\Parallel\Utils\FixedMaxHeap.cs (1)
30: this(maximumSize, Util.GetDefaultComparer<TElement>())