Crate recursive_array
source ·Macros
- a macro for instantiating a recursive array with the given elements.
- a macro for getting the type of a generic array with the given item type and size.
Structs
- an empty recrusive array.
- a recursive array wrapper which wraps a regular rust array (
[T; N]
) and allows it to be treated as a recursive array. - a recursive array which concatenates 2 recursive arrays.
- a recursive array which multiplies the given inner recursive array type
N
times. - a recursive array with a single item.
Traits
- a trait which when implemented by some type states that the type’s memory representation can be treated directly as a slice of type
T
, with a length that is according to theLENGTH
constant.