Expand description
A fast priority queue implementation using a fixed number of buckets.
The generic queue is implemented as FastPriorityQueueImpl
. For a type
using VecDeque
as the underlying queue, use FastPriorityQueue
.
Structs§
- Fast
Priority Queue Impl - A fast priority queue implementation using a fixed number of buckets.
- Fast
Priority Queue Into Iter - An iterator over the items in a
FastPriorityQueueImpl
that drains the values. - Fast
Priority Queue Iter - An iterator over the items in a
FastPriorityQueueImpl
.
Traits§
- Queue
- A trait for queue implementations. This is used to allow multiple queue implementations to be used with the same priority queue.
Type Aliases§
- Fast
Priority Queue - A fast priority queue implementation using VecDeque with a fixed number of buckets.