Macro vec_arr

Source
macro_rules! vec_arr {
    () => { ... };
    ($($x:expr),+ $(,)?) => { ... };
    ($x:expr; $n:literal) => { ... };
}
Expand description

Creates a VecArray just like the vec! macro