Macro try_vec
macro_rules! try_vec { () => { ... }; ($elem:expr; $n:expr) => { ... }; ($($x:expr),+ $(,)?) => { ... }; }
Expand description
Tries to create a Vec
containing the arguments.
macro_rules! try_vec { () => { ... }; ($elem:expr; $n:expr) => { ... }; ($($x:expr),+ $(,)?) => { ... }; }
Tries to create a Vec
containing the arguments.