Expand description
Homogeneous data structures that process elements in FIFO order.
Elements are typically added at one end (the “tail” or “back”) and removed from the other (the “head” or “front”).
Variants like double-ended queues (deques) allow insertion and removal at both ends, providing additional flexibility.
Structs§
- Binary
Heap alloc
- 📦
alloc
A priority queue implemented with a binary heap. - Destaque
- 📦
A static double-ended queue and stack backed by an
Array
. - Destaque
Iter - 🔄
An iterator over
Destaque
elements. - VecDeque
alloc
- 📦
alloc
A double-ended growable queue.
Traits§
Type Aliases§
- Destaque
U8 _destaque_u8
- 📦
A
Destaque
with an 8-bit index size.