Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: Subroutine chaining idiom requested

by tachyon (Chancellor)
on May 24, 2001 at 09:05 UTC ( [id://82821]=note: print w/replies, xml ) Need Help??


in reply to Subroutine chaining idiom requested

Here's mine, 34 chars for the task which did not specify a print requirement. 32 without the my for strict compliance. 27 if you use something shorter than $agenda like $a

tachyon

use strict; # a ref to a few subrefs to go, performing as secified # in that they take an array, do someting and return an array my $agenda = [ sub{my@in=@_;for(@in){$_=$_*2}@in;}, sub{my@in=@_;for(@in){$_=$_*2}@in;}, sub{my@in=@_;for(@in){$_=$_*2}@in;}, ]; # four my@a=(1,2,3);@a=&$_(@a)for@$agenda;print"@a";

Edited 2001-05-24 by Ovid

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (8)
As of 2024-03-28 15:02 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found