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