table of contents
| Path::Dispatcher::Rule::Enum(3pm) | User Contributed Perl Documentation | Path::Dispatcher::Rule::Enum(3pm) |
NAME¶
Path::Dispatcher::Rule::Enum - one of a list of strings must matchSYNOPSIS¶
my $rule = Path::Dispatcher::Rule::Enum->new(
enum => [qw(perl ruby python php)],
block => sub { warn "I love " . shift->pos(1) },
);
DESCRIPTION¶
Rules of this class check whether the path matches any of its "enum" strings.ATTRIBUTES¶
enum¶
case_sensitive¶
| 2013-03-14 | perl v5.14.2 |