Module list

Source
Expand description

Implementations of sequential collections.
list::{array, queue, stack}

Extends: std::{array, collections, vec}


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§

ConstList
📦 An immutable, append-only, linear, functional, non-contiguous, list.
ConstListIterator
🔄 Iterates over the contents of a ConstList.
LinkedListalloc
📦 alloc A doubly-linked list with owned nodes.