convenient function to build a parser that kills the result of another parser e.g. killResults(match("a")) succeeds, but returns an empty result
unittests for kill results
import unit_threaded; auto res = killResults(match("a")).parse("a"); res.success.shouldBeTrue; res.results.length.shouldEqual(0);
See Implementation
convenient function to build a parser that kills the result of another parser e.g. killResults(match("a")) succeeds, but returns an empty result