Module binary_heap

Module binary_heap 

Source
Expand description

Macros§

heap
Creates a BinaryHeap from a list of elements.
into_heap
Creates a BinaryHeap from a list of elements.

Structs§

BinaryHeap
A priority queue implemented with a binary heap.
Drain
A draining iterator over the elements of a BinaryHeap.
IntoIter
An owning iterator over the elements of a BinaryHeap.
Iter
An iterator over the elements of a BinaryHeap.
PeekMut
Structure wrapping a mutable reference to the greatest item on a BinaryHeap.
DrainSortedExperimental
A draining iterator over the elements of a BinaryHeap.
IntoIterSortedExperimental