macro_rules! join {
($a:expr, $b:expr $(,)?) => { ... };
($a:expr, $b:expr, $($rest:expr),+ $(,)?) => { ... };
}Expand description
join!(a, b, ...) — wait for all.
macro_rules! join {
($a:expr, $b:expr $(,)?) => { ... };
($a:expr, $b:expr, $($rest:expr),+ $(,)?) => { ... };
}join!(a, b, ...) — wait for all.