Big Mac

This crate contains the branching_parser! metamacro, which can be used to create complex macros with few lines of code.

To use the macro, call it as such (examples for chain_linq's parameters provided)

Example parser transformation:

"from x in xs select x * 2" => "from {x} in {xs}, select {x * 2},"

branching_parser!{ @unroll path::to::this::module; // (chain_linq;) (note the ; at the end) name_of_entrypoint_macro // (linq) name_of_parsing_macro // (linq_parser) name_of_filter_macro // (linq_filter) fully::qualified::destination::macro; // (chain_linq::linq_impl) (note the ; at the end) // {series of branch specifiers} }

Parameters:

Rules

Branch specifiers are how the syntax of the resulting macro is decided; They take a branching form that must follow certain rules to create a useful result.

Examples

For example, LINQ's select statements (of the form select # [into #] where [] indicates being optional) can be expressed as:

{ select { ## {} { into { ## {} } } } }

Another example is LINQ's group by (group # by # [into #]):

{ group { ## { by { ## {} { into { ## {} } } } } } }

Finally, an example of a word-terminal chain is LINQ's orderby (orderby # [ascending | descending]):

{ orderby { ## {} { ascending } { descending } } }

More examples can be found in chain_linq's repo.