Rosetta Stone: Lambda expressions - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T06:36:33Zhttp://stackoverflow.com/feeds/question/388059http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/388059/rosetta-stone-lambda-expressions3Rosetta Stone: Lambda expressionsAdam Bellaire2008-12-23T03:02:39Z2008-12-23T22:21:42Z
<p>How are anonymous functions/lambda expressions expressed in various programming languages? Are the syntax and semantics especially useful or not useful in that language? Are there any programming languages for which true anonymous functions aren't possible?</p>
<p>Like other <a href="http://stackoverflow.com/questions/tagged/rosetta-stone">Rosetta Stone questions</a>, responses should start with the name of the language being demonstrated, and the demo should (hopefully) be interesting to people seeking new languages to learn.</p>
http://stackoverflow.com/questions/388059/rosetta-stone-lambda-expressions/388098#3880984Answer by ieure for Rosetta Stone: Lambda expressionsieure2008-12-23T03:35:22Z2008-12-23T03:43:36Z<p>LISP (Common Lisp/Scheme):</p>
<pre><code>(lambda (y) (* y 2))
</code></pre>
<p>JavaScript:</p>
<pre><code>x = function(y) { return 2*y; };
</code></pre>
<p>Python:</p>
<pre><code>lambda x: 2*x
</code></pre>
<p>PHP (>= 5.3):</p>
<pre><code>$x = function(y) { return 2 * y; };
</code></pre>
http://stackoverflow.com/questions/388059/rosetta-stone-lambda-expressions/388101#3881012Answer by Greg Hewgill for Rosetta Stone: Lambda expressionsGreg Hewgill2008-12-23T03:36:41Z2008-12-23T03:36:41Z<p>Perl:</p>
<pre><code>$f = sub { 2 * $_[0] };
</code></pre>
http://stackoverflow.com/questions/388059/rosetta-stone-lambda-expressions/388103#3881034Answer by Dustin for Rosetta Stone: Lambda expressionsDustin2008-12-23T03:39:20Z2008-12-23T03:39:20Z<p>Haskell:</p>
<pre><code>\x -> 2 * x
</code></pre>
http://stackoverflow.com/questions/388059/rosetta-stone-lambda-expressions/388104#3881042Answer by Greg Hewgill for Rosetta Stone: Lambda expressionsGreg Hewgill2008-12-23T03:39:46Z2008-12-23T03:39:46Z<p>Lua:</p>
<pre><code>f = function (x) return 2 * x end
</code></pre>
http://stackoverflow.com/questions/388059/rosetta-stone-lambda-expressions/388106#3881061Answer by Dustin for Rosetta Stone: Lambda expressionsDustin2008-12-23T03:40:28Z2008-12-23T03:40:28Z<p>Ocaml:</p>
<pre><code>fun x -> 2 * x
</code></pre>
http://stackoverflow.com/questions/388059/rosetta-stone-lambda-expressions/388108#3881081Answer by Bill Zeller for Rosetta Stone: Lambda expressionsBill Zeller2008-12-23T03:41:00Z2008-12-23T03:47:56Z<p>Javascript</p>
<pre><code>var f = function(x){ return x*2;};
f(3);
</code></pre>
<p>PHP</p>
<pre><code>$f = create_function('$x', 'return $x*2;');
$f(3);
</code></pre>
<p>Python</p>
<pre><code>f = lambda x: x*2
f(3)
</code></pre>
<p>It is worth noting that Python lambdas can only be expressions, not a sequence of arbitrary statements as a regular function can.</p>
<p>SML</p>
<pre><code>val f = fn x=>x*2;
f(3);
</code></pre>
http://stackoverflow.com/questions/388059/rosetta-stone-lambda-expressions/388111#3881110Answer by Dustin for Rosetta Stone: Lambda expressionsDustin2008-12-23T03:43:02Z2008-12-23T03:43:02Z<p>erlang:</p>
<pre><code>fun(X) -> 2 * X end
</code></pre>
http://stackoverflow.com/questions/388059/rosetta-stone-lambda-expressions/388112#3881124Answer by Greg Hewgill for Rosetta Stone: Lambda expressionsGreg Hewgill2008-12-23T03:43:45Z2008-12-23T03:43:45Z<p>C# 3.0:</p>
<pre><code>var f = x => 2 * x;
</code></pre>
http://stackoverflow.com/questions/388059/rosetta-stone-lambda-expressions/388117#3881172Answer by Dustin for Rosetta Stone: Lambda expressionsDustin2008-12-23T03:47:29Z2008-12-23T03:47:29Z<p>Ruby:</p>
<pre><code>lambda {|x| x * 2}
</code></pre>
<p>or</p>
<pre><code>Proc.new {|x| x * 2}
</code></pre>
http://stackoverflow.com/questions/388059/rosetta-stone-lambda-expressions/388124#3881243Answer by dreeves for Rosetta Stone: Lambda expressionsdreeves2008-12-23T03:50:33Z2008-12-23T03:50:33Z<p>Mathematica:</p>
<pre><code>2*#&
</code></pre>
<p>The #, #2, etc are the arguments and ampersand makes everything previous be the lambda function (use parens if that's ambiguous). You can also use ## for, essentially, the list of all the arguments.</p>
<p>The above is syntactic sugar for</p>
<pre><code>Function[x, 2*x]
</code></pre>
<p>Also, the <code>*</code> is optional, making Mathematica, I reckon, the winner by character count:</p>
<pre><code>2#&
</code></pre>
http://stackoverflow.com/questions/388059/rosetta-stone-lambda-expressions/388131#3881317Answer by Dustin for Rosetta Stone: Lambda expressionsDustin2008-12-23T03:54:18Z2008-12-23T03:54:18Z<p>Java:</p>
<pre><code>public interface Lambda<A,V> {
V call(A a);
}
public class LambdaTest extends Object {
public static void main(String argv[]) {
Lambda<String, Integer> lambda=new Lambda<String, Integer>() {
public Integer call(String s) {
return Integer.parseInt(s);
}
};
System.out.printf("Got %d\n", lambda.call(argv[0]));
}
}
</code></pre>
http://stackoverflow.com/questions/388059/rosetta-stone-lambda-expressions/388135#3881350Answer by Dustin for Rosetta Stone: Lambda expressionsDustin2008-12-23T03:56:28Z2008-12-23T03:56:28Z<p>Reverse Polish Lisp (my first highlevel programming language):</p>
<pre><code><< 2 * >>
</code></pre>
<p><strong>edit</strong></p>
<p>I should point out that the same in factor looks like this:</p>
<pre><code>[ 2 * ]
</code></pre>
http://stackoverflow.com/questions/388059/rosetta-stone-lambda-expressions/388142#3881422Answer by Greg Hewgill for Rosetta Stone: Lambda expressionsGreg Hewgill2008-12-23T04:00:28Z2008-12-23T04:00:28Z<p>Arc:</p>
<pre><code>[* 2 _]
</code></pre>
http://stackoverflow.com/questions/388059/rosetta-stone-lambda-expressions/388149#3881490Answer by BenAlabaster for Rosetta Stone: Lambda expressionsBenAlabaster2008-12-23T04:12:41Z2008-12-23T04:12:41Z<p>VB</p>
<p>Dim a = Function(x) x * 2</p>
http://stackoverflow.com/questions/388059/rosetta-stone-lambda-expressions/388927#3889271Answer by Jason S for Rosetta Stone: Lambda expressionsJason S2008-12-23T14:05:43Z2008-12-23T14:05:43Z<p>MATLAB:</p>
<pre><code>f = @(x) x^2;
g = @(k) @(x) x+k;
g3 = g(3);
% g is a function that returns a function
</code></pre>
http://stackoverflow.com/questions/388059/rosetta-stone-lambda-expressions/388951#3889511Answer by stbuton for Rosetta Stone: Lambda expressionsstbuton2008-12-23T14:18:44Z2008-12-23T14:18:44Z<p>Scala:</p>
<p>(x => 2 * x)</p>
http://stackoverflow.com/questions/388059/rosetta-stone-lambda-expressions/389128#3891281Answer by Brad Gilbert for Rosetta Stone: Lambda expressionsBrad Gilbert2008-12-23T15:20:38Z2008-12-23T22:21:42Z<h2><a href="http://dev.perl.org/perl6/doc/design/syn/S06.html" rel="nofollow"><code>Perl 6</code></a></h2>
<p>As always with Perl, <a href="http://en.wikipedia.org/wiki/There_is_more_than_one_way_to_do_it" rel="nofollow">TMTOWTDI (There is more than one way to do it)</a>.</p>
<pre><code>my $square_pointy = -> $num { $num ** 2 };
my $square_block = { $_ ** 2 };
my $square_block_n = { $^num ** 2 };
my $square_sub = sub ($num){ $num ** 2 };
say $square_pointy(4);
say $square_block(4);
say $square_block_n(4);
say $square_sub(4);
</code></pre>
http://stackoverflow.com/questions/388059/rosetta-stone-lambda-expressions/389300#3893001Answer by Joel Mueller for Rosetta Stone: Lambda expressionsJoel Mueller2008-12-23T16:10:45Z2008-12-23T16:10:45Z<p>There are actually two ways to do this in JavaScript, although so far I've only seen this one mentioned:</p>
<pre><code>var f = function(x){ return x*2;};
</code></pre>
<p>As of JavaScript 1.8, you can do this:</p>
<pre><code>var f = function(x) x * 2;
</code></pre>
http://stackoverflow.com/questions/388059/rosetta-stone-lambda-expressions/389354#3893543Answer by Martin for Rosetta Stone: Lambda expressionsMartin2008-12-23T16:31:01Z2008-12-23T16:31:01Z<p><a href="http://msdn.microsoft.com/en-us/fsharp/default.aspx" rel="nofollow">F#</a>:</p>
<pre><code>fun x -> x * x
</code></pre>
http://stackoverflow.com/questions/388059/rosetta-stone-lambda-expressions/389376#3893762Answer by noam for Rosetta Stone: Lambda expressionsnoam2008-12-23T16:38:29Z2008-12-23T16:38:29Z<pre><code>C++:
#include <boost/lambda.hpp>
using namespace boost::lambda;
boost::function<int (int)> f = (_1 * 2);
</code></pre>
http://stackoverflow.com/questions/388059/rosetta-stone-lambda-expressions/389412#3894121Answer by Cznpy Hrnjwczky for Rosetta Stone: Lambda expressionsCznpy Hrnjwczky2008-12-23T16:51:56Z2008-12-23T17:16:59Z<p><strong>Haskell:</strong></p>
<p><code>\x y -> x * y</code></p>
<p>or <code>\x -> x *</code></p>
<p>or <code>(x *)</code></p>
<p>Almost all descendants of Lisp and ISWIM (ML, Haskell, etc.) support some kind of terse syntax for lambda expressions. The latter family also generally allows automatic currying, which means that instead of writing <code>x => (y => f(x, y))</code> you can write <code>f(x,)</code> and the language will automatically interpret this as a sort of lambda expression.</p>
<p>In some languages this even extends to binary operators. In Haskell, for example, <code>(* 2)</code> is a valid (and commonplace) expression for an anonymous function that multiplies its argument by two.</p>
<p>Historically, descendants of Algol and Fortran (including the entire C and Pascal family) have not supported any kind of lambda expression until very recently. Languages with some degree of OOP support (including C++ and Java) allow you to write "functor objects," but that's usually much more verbose and a bit less flexible than "real" lambda expressions.</p>
http://stackoverflow.com/questions/388059/rosetta-stone-lambda-expressions/389471#3894714Answer by ClaudioA for Rosetta Stone: Lambda expressionsClaudioA2008-12-23T17:13:42Z2008-12-23T17:13:42Z<p>Hi! My first answer :)</p>
<p>Smalltalk:</p>
<p>The definition ....</p>
<p><code>
[:x | x * 2]
</code></p>
<p>The evaluation ....</p>
<p><code>
[:x | x * 2] value: 4
</code></p>
http://stackoverflow.com/questions/388059/rosetta-stone-lambda-expressions/389995#3899953Answer by Edgar for Rosetta Stone: Lambda expressionsEdgar2008-12-23T20:26:39Z2008-12-23T20:26:39Z<p>C++0x:</p>
<pre><code>auto f = [](int x){ return x*2; }; // Definition
std::cout << f(3); // Usage
</code></pre>
<p>Read more about this new feature <a href="http://en.wikipedia.org/wiki/C%2B%2B0x#Lambda_functions_and_expressions" rel="nofollow">here</a>.</p>