in reply to Re: Local for lexicals
in thread Local for lexicals
Of course, in Perl, one doesn't really need "lambda". Hence a lambda which just returns the sub.Yes, I agree, if one is willing to set the variables ‘outside’—but I'd like to set them on the function call, so that I can write
(without affecting the value of $x). Of course you're right that Perl doesn't need lambda, in the sense that the imaginary code above functions exactly the same as the real codemy $f = lambda $x => sub { $x**2 }; say $f->(2); # => 4 say $f->(3); # => 9
I just wanted to see if it could be done. (I have other examples that aren't just syntactic sugar, butmy $f = sub { $_[0]**2 }; say $f->(2); # => 4 say $f->(3); # => 9
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Local for lexicals
by JavaFan (Canon) on Aug 10, 2009 at 23:33 UTC | |
by LanX (Saint) on Aug 11, 2009 at 00:11 UTC | |
by JadeNB (Chaplain) on Aug 12, 2009 at 19:26 UTC |