macro_rules! match_some_continue {
($opt:expr) => { ... };
}Expand description
match Option
if is Some, will be return value and keep loop
if is Nome, will be continue the loop
macro_rules! match_some_continue {
($opt:expr) => { ... };
}match Option
if is Some, will be return value and keep loop
if is Nome, will be continue the loop