Stack-allocated arrays
TODO
arrayvec
Arrays that are ONLY stack-allocated with fixed capacity.
smallvec
Arrays that are stack-allocated with fallback to the heap if the fixed stack capacity is exceeded.
tinyvec
Stack-allocated arrays in 100% safe Rust code. tinyvec
requires items to implement the Default trait.
TODO write