macro_rules! concat_arrays {
(
init = $init:expr;
ty = $tyname:ty;
[$($arr:ident),+]
) => { ... };
}
Expand description
A macro for turning &[&[T]]
into &[T]
macro_rules! concat_arrays {
(
init = $init:expr;
ty = $tyname:ty;
[$($arr:ident),+]
) => { ... };
}
A macro for turning &[&[T]]
into &[T]