Skip to main content

list

Macro list 

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

Construct a List from a sequence of elements