convenient function
showing off the or dsl
auto parser = or(match("a"), match("b"), match("c")); parser.parse("a").success.should == true; parser.parse("b").success.should == true; parser.parse("c").success.should == true;
See Implementation
convenient function