Macro yarpl::not[][src]

macro_rules! not {
    ($visibility:vis $name:ident { $parser:ident; }) => { ... };
}

Will return the opposite result of some other parser.

Example

just!( pub plus { "+"; } );

not!( pub not_a_plus { plus; } );