blockComment can collect the comment itself
import unit_threaded; auto parser = blockComment("/*", "*/", true); auto res = parser.parseAll("/*abc*/"); res.success.shouldBeTrue; res.fResults[0].shouldEqual("/*abc*/");
blockComment can also throw the comment away
import unit_threaded; auto parser = blockComment("/*", "*/", false); auto res = parser.parseAll("/*abc*/"); res.success.shouldBeTrue; res.fResults.length.shouldEqual(0);
convenient function