Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re: Creating Nested Functions

by ikegami (Patriarch)
on Jul 10, 2008 at 07:46 UTC ( [id://696633]=note: print w/replies, xml ) Need Help??


in reply to Creating Nested Functions

I was asked about the possibility of using our $inner; instead of my $inner;. It's doable.

sub outer { ... local our $helper; $helper = sub { ... $helper->(...); ... }; $helper->(@_); }

local still needs to be used to protect the current value of the variable and to clear the reference to the helper sub when outer exits.

I don't see any advantage in localizing $helper instead of &helper.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (7)
As of 2024-04-19 09:13 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found