in reply to Re^2: Nested Dispatch Tables?
in thread Nested Dispatch Tables?

The code you give there is valid Perl. If you built a structure using something like the following you would be able to use it just like that:
my $actions = { first_action => { type1 => \&some_function, another_type => \&another_function }, second_action => { another_type => \&function, yet_another_type => \&something, }, };
-- David Irving