Function or value | Description |
|
|
|
|
Full Usage:
LeftistHeap.insert x xs
Parameters:
'T
xs : LeftistHeap<'T>
Returns: LeftistHeap<'T>
|
|
|
|
|
|
|
|
Full Usage:
LeftistHeap.merge xs ys
Parameters:
LeftistHeap<'T>
ys : LeftistHeap<'T>
Returns: LeftistHeap<'T>
|
|
Full Usage:
LeftistHeap.ofSeq descending s
Parameters:
bool
s : seq<'a>
Returns: LeftistHeap<'a>
|
|
|
|
|
|
Full Usage:
LeftistHeap.tryGetTail xs
Parameters:
LeftistHeap<'T>
Returns: LeftistHeap<'T> option
|
|
Full Usage:
LeftistHeap.tryMerge xs ys
Parameters:
LeftistHeap<'T>
ys : LeftistHeap<'T>
Returns: LeftistHeap<'T> option
|
|
Full Usage:
LeftistHeap.tryUncons xs
Parameters:
LeftistHeap<'T>
Returns: ('T * LeftistHeap<'T>) option
|
|
|
|
Active pattern | Description |
Full Usage:
LeftistHeap.(|Cons|Nil|) h
Parameters:
LeftistHeap<'T>
Returns: Choice<('T * LeftistHeap<'T>), unit>
|
|