Macros§
- recursive_
array - a macro for instantiating a recursive array with the given elements.
- recursive_
array_ type_ of_ size - a macro for getting the type of a generic array with the given item type and size.
Structs§
- Empty
Recursive Array - an empty recrusive array.
- Recursive
Array Array Wrapper - a recursive array wrapper which wraps a regular rust array (
[T; N]
) and allows it to be treated as a recursive array. - Recursive
Array Concatenation - a recursive array which concatenates 2 recursive arrays.
- Recursive
Array Multiplier - a recursive array which multiplies the given inner recursive array type
N
times. - Recursive
Array Single Item - a recursive array with a single item.
Traits§
- Recursive
Array - 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.