Yaaf.FSharp.Helper


IPriorityQueue<'T>

Defined in Yaaf.FSharp.Helper.dll.

Instance members

Instance memberDescription
Insert(arg1)
Signature: 'T -> IPriorityQueue<'T>
Modifiers: abstract

returns a new queue with the element added to the end

IsEmpty
Signature: bool
Modifiers: abstract

returns true if the queue has no elements

Length
Signature: int
Modifiers: abstract

returns the count of the elements

Peek()
Signature: unit -> 'T
Modifiers: abstract

returns the first element

Pop()
Signature: unit -> 'T * IPriorityQueue<'T>
Modifiers: abstract

returns the first element and tail

TryPeek()
Signature: unit -> 'T option
Modifiers: abstract

returns option first element

TryPop()
Signature: unit -> ('T * IPriorityQueue<'T>) option
Modifiers: abstract
Fork me on GitHub