|  | PriorityQueueT Constructor (Int32, IComparerT) | 
 
            Initializes a new instance of the 
PriorityQueueT class that is empty, 
            has the specified initial capacity, and uses the specified 
IComparerT
            implementation to compare elements.
            
 
    Namespace: 
   Ookii.Jumbo
    Assembly:
   Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 2.0.0
 Syntax
Syntaxpublic PriorityQueue(
	int capacity,
	IComparer<T> comparer
)
Public Sub New ( 
	capacity As Integer,
	comparer As IComparer(Of T)
)
public:
PriorityQueue(
	int capacity, 
	IComparer<T>^ comparer
)
new : 
        capacity : int * 
        comparer : IComparer<'T> -> PriorityQueueParameters
- capacity
- Type: SystemInt32
 The initial number of elements that the PriorityQueueT can contain.
- comparer
- Type: System.Collections.GenericIComparerT
 The IComparerT implementation to use when 
            comparing elements, or  to use the default ComparerT
            for the type of element.
 Exceptions
Exceptions Remarks
RemarksPriorityQueueT requires a comparer implementation to perform key
              comparisons. If comparer is , this constructor uses the default
              generic equality comparer, Default. If type T
              implements the IComparableT generic interface, the default comparer
              uses that implementation.
            
              This constructor is an O(n) operation, where n is capacity.
            
 See Also
See Also