Expand description
std::collections::BinaryHeap
macros
Macros§
- heap
- Creates a
BinaryHeap
from a list of elements. - into_
heap - Creates a
BinaryHeap
from a list of elements.
Structs§
- Binary
Heap - A priority queue implemented with a binary heap.
- Drain
- A draining iterator over the elements of a
BinaryHeap
. - Into
Iter - 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
. - Drain
Sorted Experimental - A draining iterator over the elements of a
BinaryHeap
. - Into
Iter Sorted Experimental