Expand description
The linked_array
crate provides access to arbitrarilly sized arrays
That use the same in-memory representation as traditional slices.
In order to remain performant, this crate depends on optimisations
capable of fully executing tail-recursive loops at compile time.
Macros§
- array
- Builds a linked array.
Structs§
- Cons
- The type used for a non-empty array. Analogous to a cons cell in a linked list.
- Term
- The type used for an empty array or array terminator.