@@ -383,8 +383,8 @@ public partial class PriorityQueue<TElement, TPriority>
383
383
{
384
384
public PriorityQueue ( ) { }
385
385
public PriorityQueue ( System . Collections . Generic . IComparer < TPriority > ? comparer ) { }
386
- public PriorityQueue ( System . Collections . Generic . IEnumerable < ( TElement element , TPriority priority ) > values ) { }
387
- public PriorityQueue ( System . Collections . Generic . IEnumerable < ( TElement element , TPriority priority ) > values , System . Collections . Generic . IComparer < TPriority > ? comparer ) { }
386
+ public PriorityQueue ( System . Collections . Generic . IEnumerable < ( TElement element , TPriority priority ) > items ) { }
387
+ public PriorityQueue ( System . Collections . Generic . IEnumerable < ( TElement element , TPriority priority ) > items , System . Collections . Generic . IComparer < TPriority > ? comparer ) { }
388
388
public PriorityQueue ( int initialCapacity ) { }
389
389
public PriorityQueue ( int initialCapacity , System . Collections . Generic . IComparer < TPriority > ? comparer ) { }
390
390
public System . Collections . Generic . IComparer < TPriority > Comparer { get { throw null ; } }
@@ -394,16 +394,16 @@ public void Clear() { }
394
394
public TElement Dequeue ( ) { throw null ; }
395
395
public void Enqueue ( TElement element , TPriority priority ) { }
396
396
public TElement EnqueueDequeue ( TElement element , TPriority priority ) { throw null ; }
397
- public void EnqueueRange ( System . Collections . Generic . IEnumerable < ( TElement element , TPriority priority ) > values ) { }
398
- public void EnqueueRange ( System . Collections . Generic . IEnumerable < TElement > values , TPriority priority ) { }
397
+ public void EnqueueRange ( System . Collections . Generic . IEnumerable < ( TElement element , TPriority priority ) > items ) { }
398
+ public void EnqueueRange ( System . Collections . Generic . IEnumerable < TElement > elements , TPriority priority ) { }
399
399
public void EnsureCapacity ( int capacity ) { }
400
400
public TElement Peek ( ) { throw null ; }
401
401
public void TrimExcess ( ) { }
402
402
public bool TryDequeue ( [ System . Diagnostics . CodeAnalysis . MaybeNullWhenAttribute ( false ) ] out TElement element , [ System . Diagnostics . CodeAnalysis . MaybeNullWhenAttribute ( false ) ] out TPriority priority ) { throw null ; }
403
403
public bool TryPeek ( [ System . Diagnostics . CodeAnalysis . MaybeNullWhenAttribute ( false ) ] out TElement element , [ System . Diagnostics . CodeAnalysis . MaybeNullWhenAttribute ( false ) ] out TPriority priority ) { throw null ; }
404
404
public partial class UnorderedItemsCollection : System . Collections . Generic . IEnumerable < ( TElement element , TPriority priority ) > , System . Collections . Generic . IReadOnlyCollection < ( TElement element , TPriority priority ) > , System . Collections . ICollection , System . Collections . IEnumerable
405
405
{
406
- public UnorderedItemsCollection ( ) { }
406
+ public UnorderedItemsCollection ( IReadOnlyCollection < ( TElement element , TPriority priority ) > items ) { }
407
407
public int Count { get { throw null ; } }
408
408
bool System . Collections . ICollection . IsSynchronized { get { throw null ; } }
409
409
object System . Collections . ICollection . SyncRoot { get { throw null ; } }
0 commit comments