[][src]Macro combinedfun::parser_dbg

macro_rules! parser_dbg {
    ($parser:expr) => { ... };
}

Allows debugging a parser. It uses the dbg! macro internally, and prints what the parser returned (be it successful or an error). If it was successful, it prints the input before and after the parser was applied.