Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re: When should a wheel be reinvented

by BrowserUk (Patriarch)
on Jun 29, 2004 at 18:44 UTC ( [id://370572]=note: print w/replies, xml ) Need Help??


in reply to When should a wheel be reinvented

(I think) There's no real reason why the values shouldn't be passed in via @_ in the normal way.

sub test (&@) { my $code=shift; map $code->( $_, 'other', 'params' ), @_; }; test { print "\$_ = $_ \@_ = '@_'"; } 1 .. 10; $_ = 1 @_ = '1 other params' $_ = 2 @_ = '2 other params' $_ = 3 @_ = '3 other params' $_ = 4 @_ = '4 other params' $_ = 5 @_ = '5 other params' $_ = 6 @_ = '6 other params' $_ = 7 @_ = '7 other params' $_ = 8 @_ = '8 other params' $_ = 9 @_ = '9 other params' $_ = 10 @_ = '10 other params'

(I think) The same could be done for File::Find and other subs that take anon. blocks/subs as args--sort blocks, List::Util functions etc.


Examine what is said, not who speaks.
"Efficiency is intelligent laziness." -David Dunham
"Think for yourself!" - Abigail
"Memory, processor, disk in that order on the hardware side. Algorithm, algoritm, algorithm on the code side." - tachyon

Replies are listed 'Best First'.
Re^2: When should a wheel be reinvented
by tachyon (Chancellor) on Jun 30, 2004 at 03:28 UTC

    Here is a patch for File::Find so that it passes args and looks after $_.

    cheers

    tachyon

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (4)
As of 2024-04-24 01:51 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found