1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/*
Appellation: scsys-macros <library>
Contributors: FL03 <jo3mccain@icloud.com>
Description:
... Summary ...
*/
#[macro_export]
macro_rules! extend_path {
($(
$x:expr;
[ $( $y:expr ),* ]
);*) => {
vec![
$($(
format!("{}/{}", $x, $y)
),*),*
]
}
}