Expand description
This module defines iterator types that are used only with the PriorityQueue.
Usually you don’t need to explicitly use any of the types declared here.
Structs§
- Extract
If - An
Iteratorin arbitrary order which uses apredicateto determine if an element should be removed from thePriorityQueue. - Into
Sorted Iter - A consuming iterator over the couples
(item, priority)of thePriorityQueueordered by priority, from the highest to the lowest. - IterMut
- A mutable iterator over the couples
(item, priority)of thePriorityQueuein arbitrary order.