Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re^3: Real life uses for closures.

by tobyink (Canon)
on Feb 13, 2013 at 13:14 UTC ( [id://1018534]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Real life uses for closures.
in thread Real life uses for closures.

Technically none of the examples from Sort::MultipleFields employ closures; they just use anonymous functions. Closures "close over" a variable.

package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name

Replies are listed 'Best First'.
Re^4: Real life uses for closures.
by DrHyde (Prior) on Feb 18, 2013 at 11:54 UTC

    Here's a closure from it ...

    $sortsub = sub($$) { $spec->($_[0]->{$field}, $_[1]->{$field}) || $oldsortsub->($_[0], $_[1]) }

    Lemme guess - did you just grep the code for /sub {/? :-)

      I didn't look at the source code at all - I was just referring to the usage examples in the pod.

      package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name

Log In?
Username:
Password:

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

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

    No recent polls found