Array

Type Alias Array 

Source
pub type Array<T, const N: usize> = FixedArray<T, N>;
Expand description

A fixed sized array defined at compile time. The size of the array is public.

Aliased Typeยง

pub union Array<T, const N: usize> {
    /* private fields */
}