in reply to Re^2: Nested Dispatch Tables?
in thread Nested Dispatch Tables?
my $actions = { first_action => { type1 => \&some_function, another_type => \&another_function }, second_action => { another_type => \&function, yet_another_type => \&something, }, };
|
|---|