macro_rules! vec_in {
(in $alloc:expr $(,)?) => { ... };
(in $alloc:expr; $elem:expr; $n:expr) => { ... };
(in $alloc:expr; $($x:expr),+ $(,)?) => { ... };
}Expand description
A bumpalo::vec!-style constructor for the arena Vec, generic over the allocator backend.
vec_in![in alloc]-> emptyvec_in![in alloc; elem; n]->nclones ofelemvec_in![in alloc; a, b, c]-> the listed elements, in order