macro_rules! pvec {
() => { ... };
($($x:expr),*) => { ... };
($($x:expr,)*) => { ... };
}
Expand description
Creates a new PersistentVector
with the provided elements.
This macro provides a convenient way to create persistent vectors,
similar to the standard library’s vec!
macro for Vec
.