Expand description
Modules§
- array
- Homogeneous data structures, random-access and sequentially allocated.
- queue
- Homogeneous data structures that process elements in FIFO order.
- stack
- Homogeneous data structures that process elements in LIFO order.
- tuple
- Heterogeneous data structures, random-access, sequentially allocated and statically sized.
Structs§
- Const
List - 📦 An immutable, append-only, linear, functional, non-contiguous, list.
- Const
List Iterator - 🔄
Iterates over the contents of a
ConstList
. - Linked
List alloc
- 📦
alloc
A doubly-linked list with owned nodes.