macro_rules! arrvec {
    ($elem:expr; $n:expr) => { ... };
    ($($x:expr),*$(,)*) => { ... };
}
Expand description

Macro to automate simplify the creation of an ArrayVec.