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

Construct a SharedList from a sequence of elements