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