Module stack

Source
Expand description

Homogeneous data structures that process elements in LIFO order.

Elements are added and removed from the same end, commonly referred to as the “top” of the stack.

Stacks are ideal for managing nested or temporary operations.

Structs§

Stack
📦 A static stack backed by an Array.
StackIter
🔄 An iterator over Stack elements.

Traits§

DataDesta
📦 An abstract double-ended stack data type.
DataStack
📦 An abstract stack data type.

Type Aliases§

StackU8_stack_u8
📦 A Stack with an 8-bit index size.