Macro lvec
Source macro_rules! lvec {
($($item:expr),* $(,)?) => { ... };
}
Expand description
Create an LVec<T> with automatic Into<Value<T>> conversion.
The primary benefit is that it allows freely mixing T, Value<T> and
LVar<T> without needing to do manual conversion.