macro_rules! or {
($e:expr, $fallback:expr) => { ... };
(, $fallback:expr) => { ... };
}
Expand description
Return the first argument if not empty, otherwise the second.
macro_rules! or {
($e:expr, $fallback:expr) => { ... };
(, $fallback:expr) => { ... };
}
Return the first argument if not empty, otherwise the second.