Macro vec_array

Source
macro_rules! vec_array {
    (
        [$array_type:ident; $array_len:expr];
        $($x:expr),*
    ) => { ... };
}