macro_rules! ne_vec {
    ($item:expr; 0) => { ... };
    () => { ... };
    ($item:expr; $length:expr) => { ... };
    ($($item:expr),+ $(,)?) => { ... };
}
Expand description

This macro creates a Vec1 by checking at compile-time that its invariant holds.