Macro foundation::make_connections [] [src]

macro_rules! make_connections {
    (
    $Node:ident {
        transition {
            $(($TypeT:ident, $FuncT:ident))*
        }
    };
    $($rest_ident:ident $rest:tt;)*
    ) => { ... };
    (
    $Node:ident {
        parameter_transition {
            $(($TypeUP:ident, $FuncUP:ident, $Parameter: ident))*
        }
    };
    $($rest_ident:ident $rest:tt;)*
    ) => { ... };
    (
        $Node:ident {
            transition {
                $(($FuncT:ident, $TypeT:ident))*
            }
            parameter_transition {
                $(($TypeUP:ident, $FuncUP:ident, $Parameter: ident))*
            }
        };
    $($rest_ident:ident $rest:tt;)*
    ) => { ... };
}