- or download this
my @dispatch = (
[ sub { shift =~ m/test/ } => sub { action } ],
...
last;
}
}
- or download this
my @dispatch = (
... same as above ...
...
$dispatch[ # In the table...
firstidx { $_->[0]($test_value) } @dispatch # do a lookup...
]->[1](); # and take action.
- or download this
my @dispatch = (
...same as above ...
);
( first { $_->[0]($test_value) } @dispatch )->[1]();