Click or drag to resize
Accord.NET (logo)

PriorityQueueTFirst Property

Returns the head of the queue, without removing it (use Dequeue() for that). If the queue is empty, behavior is undefined. This is an O(1) operation.

Namespace:  Accord.Collections
Assembly:  Accord (in Accord.dll) Version: 3.8.0
Syntax
public PriorityQueueNode<T> First { get; }
Request Example View Source

Property Value

Type: PriorityQueueNodeT
See Also