Macro hlist_macro::hlist_pat [] [src]

macro_rules! hlist_pat {
    [] => { ... };
    [$head: pat] => { ... };
    [$head: pat, $($tail: pat), *] => { ... };
    [$head: pat, $($tail: pat), *,] => { ... };
}