macro_rules! stablevec {
    () => { ... };
    ($elem:expr; $n:expr) => { ... };
    ($($x:expr),+ $(,)?) => { ... };
}
Expand description

Create a StableVec containing the arguments, as with std::vec![].