ConcurrentPriorityQueueTKey, TValueTryDequeue Method |
Dequeues the minimum key value. Returns true if the queue is not empty; otherwise, false.
Namespace: Altaxo.CollectionsAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntaxpublic 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
BooleanTrue if the queue is not empty; otherwise, false.
See Also