Crate linked_array

Source
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.

Traits§

Array
A generic trait for arbitarily fixed size arrays.
Map
An extension of Array that allows for transforming the elements.