Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: Functional Inside Out Closure Objects

by dave_the_m (Monsignor)
on May 20, 2004 at 16:13 UTC ( [id://354991]=note: print w/replies, xml ) Need Help??


in reply to Functional Inside Out Closure Objects

In general closures have a lot higher overhead. Instead of storing a scalar variable as a hash entry, you are storing a reference to a CV structure, which points to a pad list which points to a padname list (containing the name of the lexical), and a pad containing a pointer to the lexicial plus pointers to other pad targets if there are any ops in the sub.

goto &f has roughly the same overhead as a normal exit from a sub followed by a call to another sub; ie the following two are roughly equivalent performance-wise:

sub f { ...; goto &g } sub g { ...} f(); sub f { ...; } sub g { ...} f(); g();

Log In?
Username:
Password:

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

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

    No recent polls found