macro_rules! sexpr_val {
{ $(;)? } => { ... };
{ ; @{ $($head:tt)* } } => { ... };
{ ; $head:expr } => { ... };
{ @{ $($head:tt)* } ; $($tail:tt)* } => { ... };
{ $head:expr ; $($tail:tt)* } => { ... };
{ @{ $($head:tt)* } $(, $($tail:tt)*)? } => { ... };
{ $head:expr $(, $($tail:tt)*)? } => { ... };
}Expand description
Build an sexpr type from expressions.