I\'m sure this is covered in the documentation somewhere but I have been unable to find it... I\'m looking for the syntactic sugar that will make it possible to call a metho
Foo->${\$hash{func}};
But for clarity, I'd probably still write it as:
my $method = $hash{func}; Foo->$method;