Module core_iterators

Source
Expand description

This module defines iterator types that are used with both the PriorityQueue and the DoublePriorityQueue

Usually you don’t need to explicitly use any of the types declared here.

Structs§

Drain
A draining iterator in arbitrary order over the couples (item, priority) in the queue.
IntoIter
An iterator in arbitrary order over the couples (item, priority) that consumes the queue.
Iter
An iterator in arbitrary order over the couples (item, priority) in the queue.