macro_rules! list { () => { ... }; ( $($x:expr),+ $(,)? ) => { ... }; ( $($x:expr ,)+ $(,)? ) => { ... }; }
Construct a List from a sequence of elements
List