in reply to Re: calling a function as a value from a hash
in thread calling a function as a value from a hash

$op_map{$op_choice}->(@args);
or, as well
&{$op_map{$op_choice}}(@args);

Or even

$op_map{$op_choice}(@args)