Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re: functional programming: scan function

by ikegami (Patriarch)
on Mar 12, 2009 at 20:20 UTC ( [id://750252]=note: print w/replies, xml ) Need Help??


in reply to functional programming: scan function

The expensive recursion can be optimized away. Also, you might also want to specify the "&" prototype to also allow map-like syntax.
sub scanl(&@) { my ($f, @rv) = @_; $rv[$_] = $f->($rv[$_-1], $rv[$_]) for 1..$#rv; return @rv; } my @rv = scanl \&divide, 64, 4,2,4; -or- my @rv = scanl { $_[0] / $_[1] } 64, 4,2,4;

Finally, you could use $a and $b instead of $_[0] and $_[1], but that would prevent the use of existing functions directly. If that's not a problem, using $a and $b can be done by assigning references to *$ap and *$bp after doing

my $pkg = caller(); my $ap = do { no strict 'refs'; \*{$pkg.'::a'} }; local *$ap; my $bp = do { no strict 'refs'; \*{$pkg.'::b'} }; local *$bp;

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (7)
As of 2024-04-18 15:52 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found