Rosetta Stone: Lambda expressions - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T06:36:33Z http://stackoverflow.com/feeds/question/388059 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/388059/rosetta-stone-lambda-expressions 3 Rosetta Stone: Lambda expressions Adam Bellaire 2008-12-23T03:02:39Z 2008-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#388098 4 Answer by ieure for Rosetta Stone: Lambda expressions ieure 2008-12-23T03:35:22Z 2008-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#388101 2 Answer by Greg Hewgill for Rosetta Stone: Lambda expressions Greg Hewgill 2008-12-23T03:36:41Z 2008-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#388103 4 Answer by Dustin for Rosetta Stone: Lambda expressions Dustin 2008-12-23T03:39:20Z 2008-12-23T03:39:20Z <p>Haskell:</p> <pre><code>\x -&gt; 2 * x </code></pre> http://stackoverflow.com/questions/388059/rosetta-stone-lambda-expressions/388104#388104 2 Answer by Greg Hewgill for Rosetta Stone: Lambda expressions Greg Hewgill 2008-12-23T03:39:46Z 2008-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#388106 1 Answer by Dustin for Rosetta Stone: Lambda expressions Dustin 2008-12-23T03:40:28Z 2008-12-23T03:40:28Z <p>Ocaml:</p> <pre><code>fun x -&gt; 2 * x </code></pre> http://stackoverflow.com/questions/388059/rosetta-stone-lambda-expressions/388108#388108 1 Answer by Bill Zeller for Rosetta Stone: Lambda expressions Bill Zeller 2008-12-23T03:41:00Z 2008-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=&gt;x*2; f(3); </code></pre> http://stackoverflow.com/questions/388059/rosetta-stone-lambda-expressions/388111#388111 0 Answer by Dustin for Rosetta Stone: Lambda expressions Dustin 2008-12-23T03:43:02Z 2008-12-23T03:43:02Z <p>erlang:</p> <pre><code>fun(X) -&gt; 2 * X end </code></pre> http://stackoverflow.com/questions/388059/rosetta-stone-lambda-expressions/388112#388112 4 Answer by Greg Hewgill for Rosetta Stone: Lambda expressions Greg Hewgill 2008-12-23T03:43:45Z 2008-12-23T03:43:45Z <p>C# 3.0:</p> <pre><code>var f = x =&gt; 2 * x; </code></pre> http://stackoverflow.com/questions/388059/rosetta-stone-lambda-expressions/388117#388117 2 Answer by Dustin for Rosetta Stone: Lambda expressions Dustin 2008-12-23T03:47:29Z 2008-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#388124 3 Answer by dreeves for Rosetta Stone: Lambda expressions dreeves 2008-12-23T03:50:33Z 2008-12-23T03:50:33Z <p>Mathematica:</p> <pre><code>2*#&amp; </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#&amp; </code></pre> http://stackoverflow.com/questions/388059/rosetta-stone-lambda-expressions/388131#388131 7 Answer by Dustin for Rosetta Stone: Lambda expressions Dustin 2008-12-23T03:54:18Z 2008-12-23T03:54:18Z <p>Java:</p> <pre><code>public interface Lambda&lt;A,V&gt; { V call(A a); } public class LambdaTest extends Object { public static void main(String argv[]) { Lambda&lt;String, Integer&gt; lambda=new Lambda&lt;String, Integer&gt;() { 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#388135 0 Answer by Dustin for Rosetta Stone: Lambda expressions Dustin 2008-12-23T03:56:28Z 2008-12-23T03:56:28Z <p>Reverse Polish Lisp (my first highlevel programming language):</p> <pre><code>&lt;&lt; 2 * &gt;&gt; </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#388142 2 Answer by Greg Hewgill for Rosetta Stone: Lambda expressions Greg Hewgill 2008-12-23T04:00:28Z 2008-12-23T04:00:28Z <p>Arc:</p> <pre><code>[* 2 _] </code></pre> http://stackoverflow.com/questions/388059/rosetta-stone-lambda-expressions/388149#388149 0 Answer by BenAlabaster for Rosetta Stone: Lambda expressions BenAlabaster 2008-12-23T04:12:41Z 2008-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#388927 1 Answer by Jason S for Rosetta Stone: Lambda expressions Jason S 2008-12-23T14:05:43Z 2008-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#388951 1 Answer by stbuton for Rosetta Stone: Lambda expressions stbuton 2008-12-23T14:18:44Z 2008-12-23T14:18:44Z <p>Scala:</p> <p>(x => 2 * x)</p> http://stackoverflow.com/questions/388059/rosetta-stone-lambda-expressions/389128#389128 1 Answer by Brad Gilbert for Rosetta Stone: Lambda expressions Brad Gilbert 2008-12-23T15:20:38Z 2008-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 = -&gt; $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#389300 1 Answer by Joel Mueller for Rosetta Stone: Lambda expressions Joel Mueller 2008-12-23T16:10:45Z 2008-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#389354 3 Answer by Martin for Rosetta Stone: Lambda expressions Martin 2008-12-23T16:31:01Z 2008-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 -&gt; x * x </code></pre> http://stackoverflow.com/questions/388059/rosetta-stone-lambda-expressions/389376#389376 2 Answer by noam for Rosetta Stone: Lambda expressions noam 2008-12-23T16:38:29Z 2008-12-23T16:38:29Z <pre><code>C++: #include &lt;boost/lambda.hpp&gt; using namespace boost::lambda; boost::function&lt;int (int)&gt; f = (_1 * 2); </code></pre> http://stackoverflow.com/questions/388059/rosetta-stone-lambda-expressions/389412#389412 1 Answer by Cznpy Hrnjwczky for Rosetta Stone: Lambda expressions Cznpy Hrnjwczky 2008-12-23T16:51:56Z 2008-12-23T17:16:59Z <p><strong>Haskell:</strong></p> <p><code>\x y -&gt; x * y</code></p> <p>or <code>\x -&gt; 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 =&gt; (y =&gt; 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#389471 4 Answer by ClaudioA for Rosetta Stone: Lambda expressions ClaudioA 2008-12-23T17:13:42Z 2008-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#389995 3 Answer by Edgar for Rosetta Stone: Lambda expressions Edgar 2008-12-23T20:26:39Z 2008-12-23T20:26:39Z <p>C++0x:</p> <pre><code>auto f = [](int x){ return x*2; }; // Definition std::cout &lt;&lt; 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>