Click or drag to resize

ConcurrentPriorityQueueTKey, TValueTryDequeue Method

Dequeues the minimum key value. Returns true if the queue is not empty; otherwise, false.

Namespace: Altaxo.Collections
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public bool TryDequeue(
	out TKey key,
	out TValue value
)

Parameters

key  TKey
The minimum key value, if found.
value  TValue
The value associated with the minimum key, if found.

Return Value

Boolean
True if the queue is not empty; otherwise, false.
See Also