macro_rules! sym_vec {
($($e:expr),*) => { ... };
}
Expand description
Conveniently create a vector of Symbol
s. This way you can just write
sym_vec!["s1", "s2", ...]
and this macro will make sure to call
Symbol::intern
macro_rules! sym_vec {
($($e:expr),*) => { ... };
}
Conveniently create a vector of Symbol
s. This way you can just write
sym_vec!["s1", "s2", ...]
and this macro will make sure to call
Symbol::intern