You can get pretty much the same techniques out of Haskell, but you'll miss currying.
Huh? Haskell's curried...
foo a b c = a ++ c ++ b
with_parens a b = foo a b
y = with_parens "<" ">"
then print (y "banana") prints "<banana>".
BTW, if you haven't, you should definitely check out Haskell, as it can be a truly mind-bending experience. It's easy to get up and running with the HUGS interpreter, now with delicious readline support.
/s
Update: you won't miss the currying anymore...
use strict;
use Carp;
use Attribute::Handlers;
sub _curry {
my ($n, $func, @args) = @_;
return sub {
my $narg = @args + @_;
if ($narg > $n) {
carp "$narg args to curried function (expects $n).";
} elsif ($narg < $n) {
return _curry($n, $func, @args, @_);
} else {
return &$func(@args, @_);
}
};
}
sub curry : ATTR(CODE) {
my ($package, $symbol, $code, $name, $n) = @_;
confess "Usage: sub mysub : curry(N), where N > 0"
unless $n;
local($^W) = 0;
no strict 'refs';
my $newsub = _curry($n, $code);
*{$package . '::' . *{$symbol}{NAME}} = $newsub;
}
sub foo :curry(3) {
print "foo: @_\n";
}
my $x = foo(1,2);
&$x(3);
&$x(2);
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|