http://qs321.pair.com?node_id=527993


in reply to Alternative ways to fully qualify subroutine names

my $sub = $pkg->can('foo'); $sub->('param'); # or simply ... $pkg->can('foo')->('param');

Is this a good idea? Probably not. I'd have to wonder why you want to do this first.