Macro tylisp::sexpr_pat[][src]

macro_rules! sexpr_pat {
    { $(;)? } => { ... };
    { ; { $($head:tt)* } } => { ... };
    { ; $head:tt : $ty:ty } => { ... };
    { { $($head:tt)* } ; $($tail:tt)* } => { ... };
    { $head:tt : $ty:ty; $($tail:tt)* } => { ... };
    { { $($head:tt)* } $(, $($tail:tt)*)? } => { ... };
    { $head:tt : $ty:ty $(, $($tail:tt)*)? } => { ... };
}
Expand description

Build an sexpr type from expressions.