macro_rules! first {
($a:expr, $b:expr $(,)?) => { ... };
($a:expr, $b:expr, $($rest:expr),+ $(,)?) => { ... };
}Expand description
first!(a, b, ...) — first completed future wins; losers are dropped.
macro_rules! first {
($a:expr, $b:expr $(,)?) => { ... };
($a:expr, $b:expr, $($rest:expr),+ $(,)?) => { ... };
}first!(a, b, ...) — first completed future wins; losers are dropped.