Macro concat_arrays

Source
macro_rules! concat_arrays {
    (
        init = $init:expr;
        ty = $tyname:ty;
        [$($arr:ident),+]
    ) => { ... };
}
Expand description

A macro for turning &[&[T]] into &[T]