3 references to FixedMaxHeap
System.Core (3)
System\Linq\Parallel\Merging\OrderPreservingPipeliningMergeHelper.cs (1)
254m_producerHeap = new FixedMaxHeap<Producer<TKey>>(partitionCount, producerComparer);
System\Linq\Parallel\QueryOperators\Unary\TakeOrSkipQueryOperator.cs (1)
112FixedMaxHeap<TKey> sharedIndices = new FixedMaxHeap<TKey>(m_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)
38: this(maximumSize, Util.GetDefaultComparer<TElement>())