Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re^2: subroutine refs

by HelenCr (Monk)
on Sep 14, 2013 at 11:44 UTC ( [id://1054098]=note: print w/replies, xml ) Need Help??


in reply to Re: subroutine refs
in thread subroutine refs

broquaint: This is amazing. I was looking for such a solution for a while.

Thinking about it, is this canonical? (namely, documented)? or is it a quirk (an oversight in the Perl language design?)

Replies are listed 'Best First'.
Re^3: subroutine refs
by Athanasius (Archbishop) on Sep 15, 2013 at 06:45 UTC

    Removing the intermediate assignment to $name, broquaint’s code simplifies to:

    use strict; my $subref = \&{'dynamic'}; &$subref(); sub dynamic { print "Mmm, dynamic.\n"; }

    which is explicitly documented as an exception to the normal behaviour of strict 'refs' (see strict):

    There is one exception to this rule:

    $bar = \&{'foo'}; &$bar;

    is allowed so that goto &$AUTOLOAD would not break under stricture.

    So, yes, this is canonical.

    Hope that helps,

    Athanasius <°(((><contra mundum Iustus alius egestas vitae, eros Piratica,

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1054098]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (2)
As of 2024-04-26 02:14 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found