or

convenient function

Parser!(T)
or
(
T
)

Examples

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;

Meta