list

Macro list 

Source
macro_rules! list {
    () => { ... };
    ($single:expr) => { ... };
    ($car:expr ; $cdr:expr) => { ... };
    (($($first:tt)*), $($rest:tt)*) => { ... };
    ($first:expr, $($rest:tt)*) => { ... };
}
Expand description

Constructs a cons list.