macro_rules! shared_list {
() => { ... };
( $($x:expr),+ $(,)? ) => { ... };
( $($x:expr ,)+ $(,)? ) => { ... };
}Expand description
Construct a SharedList from a sequence of elements
macro_rules! shared_list {
() => { ... };
( $($x:expr),+ $(,)? ) => { ... };
( $($x:expr ,)+ $(,)? ) => { ... };
}Construct a SharedList from a sequence of elements