Expand description
This crate defines various array implementations. All of them
are ABI stable (as in #[repr(C)]).
The crate is #![no_std].
Modulesยง
- const_
helpers - Holds const helpers for arrays and slices.
- dynamic_
array - Holds the definition of
DynamicArray. - errors
- Holds definitions of various array errors.
- fixed_
array - Holds the definition of
FixedArray. - inline_
array - Holds the definition of
InlineArray. - std
std - Holds aliases for the standard arrays.
- traits
- Defines mutable and immutable traits for arrays.