max_size_vec 0.1.0

A Rust crate for stack-based vectors with a fixed amount of memory reserved. It will work on stable when min_const_generics is stabilized.
Documentation
#![feature(min_const_generics)]
/// Doctest.
pub struct X<T, const SIZE: usize> {
    y: [T; {SIZE}]
}