class for matching repetitions
unittest for repetition
auto parser = *match("a"); auto res = parser.parse("aa"); res.success.shouldBeTrue; res.rest.shouldEqual(""); res.results.length.shouldEqual(2);
See Implementation
class for matching repetitions