macro_rules! mixrc {
($( $val:expr_2021 ),*) => { ... };
}Expand description
A variant on mixvec! where each argument receives an additional .into() call
best used with an outer context that explicitly provides the expected type, such as
let stored_vec : Rc<[Stored]> = mixrc!(1, true, "string");