Expand description
Macros§
- array_
init - Initializes a
[$T; $LEN]
array in multiple ways. - vec_
alloc
alloc
Creates aVec
containing the arguments.
Structs§
- Array
- 📦 A static 1-dimensional array backed by the core array primitive.
- Array2d
- 📦
A static 2-dimensional
Array
. - Array
Fmt - A formatting wrapper for core arrays, implementing
Display
andDebug
. - Array
Into Iter - 🔄
core
A by-value array iterator. - Array
Uninit unsafe_array
- A static array allowing uninitialized elements.
- Vec
alloc
- 📦
alloc
A contiguous growable array.
Enums§
- VecChunk
alloc
- 📦 A persistent data structure with efficient append and concatenation operations.
Traits§
- Data
Array - 📦 An abstract array data type.
- ExtArray
- Extension trait providing convenience methods for
[T; N]
arrays. - ExtVec
alloc
- Extension trait providing additional methods for
Vec
.
Functions§
- array_
from_ fn core
Creates an array[T; N]
, where eachT
is returned fromcb
from its index.- array_
from_ mut core
Converts a mutable reference toT
into&mut [T; 1]
(without copying).- array_
from_ ref core
Converts a reference toT
into&[T; 1]
(without copying).