macro_rules! list {
    () => { ... };
    ( $($x:expr),* ) => { ... };
    ( $($x:expr ,)* ) => { ... };
}
Expand description

Construct a List from a sequence of elements