vote up 3 vote down star
3

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?

Like other Rosetta Stone questions, 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.

flag
Ought to be wiki. – George Stocker Dec 23 '08 at 16:34
Wiki as requested. – Adam Bellaire Dec 23 '08 at 16:50

23 Answers

vote up 3 vote down

C++0x:

auto f = [](int x){ return x*2; }; // Definition
std::cout << f(3);                 // Usage

Read more about this new feature here.

link|flag
vote up 4 vote down

Hi! My first answer :)

Smalltalk:

The definition ....

[:x | x * 2]

The evaluation ....

[:x | x * 2] value: 4

link|flag
vote up 1 vote down

Haskell:

\x y -> x * y

or \x -> x *

or (x *)

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 x => (y => f(x, y)) you can write f(x,) and the language will automatically interpret this as a sort of lambda expression.

In some languages this even extends to binary operators. In Haskell, for example, (* 2) is a valid (and commonplace) expression for an anonymous function that multiplies its argument by two.

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.

link|flag
vote up 2 vote down
C++:
#include <boost/lambda.hpp>

using namespace boost::lambda;

boost::function<int (int)> f = (_1 * 2);
link|flag
vote up 3 vote down

F#:

fun x -> x * x
link|flag
i thought it was let myFun x = x * x – RCIX Nov 3 at 1:35
vote up 1 vote down

There are actually two ways to do this in JavaScript, although so far I've only seen this one mentioned:

var f = function(x){ return x*2;};

As of JavaScript 1.8, you can do this:

var f = function(x) x * 2;
link|flag
vote up 1 vote down

Perl 6

As always with Perl, TMTOWTDI (There is more than one way to do it).

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);
link|flag
vote up 1 vote down

Scala:

(x => 2 * x)

link|flag
vote up 1 vote down

MATLAB:

f = @(x) x^2;
g = @(k) @(x) x+k;
g3 = g(3);
% g is a function that returns a function
link|flag
vote up 0 vote down

VB

Dim a = Function(x) x * 2

link|flag
vote up 2 vote down

Arc:

[* 2 _]
link|flag
vote up 0 vote down

Reverse Polish Lisp (my first highlevel programming language):

<< 2 * >>

edit

I should point out that the same in factor looks like this:

[ 2 * ]
link|flag
vote up 7 vote down

Java:

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]));

    }

}
link|flag
I almost want to mark this "offensive" but that wouldn't be nice. :) – Greg Hewgill Dec 23 '08 at 3:59
Heh. It is a little offensive... my intentions were mostly good, though. :) – Dustin Dec 23 '08 at 4:14
No offense, but Java's lambdas look like a horrible kludge grafted onto a function. – toast Dec 23 '08 at 15:54
+1: Funny because its true – Juliet Dec 23 '08 at 16:42
vote up 3 vote down

Mathematica:

2*#&

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.

The above is syntactic sugar for

Function[x, 2*x]

Also, the * is optional, making Mathematica, I reckon, the winner by character count:

2#&
link|flag
vote up 2 vote down

Ruby:

lambda {|x| x * 2}

or

Proc.new {|x| x * 2}
link|flag
You might want to make a note that a Proc.new call to return will return from the calling method. – The Wicked Flea Dec 23 '08 at 14:44
-or- proc{|x|x*2} – AShelly Dec 23 '08 at 20:24
vote up 4 vote down

C# 3.0:

var f = x => 2 * x;
link|flag
vote up 0 vote down

erlang:

fun(X) -> 2 * X end
link|flag
vote up 1 vote down

Javascript

var f = function(x){ return x*2;};
f(3);

PHP

$f = create_function('$x', 'return $x*2;');
$f(3);

Python

f = lambda x: x*2
f(3)

It is worth noting that Python lambdas can only be expressions, not a sequence of arbitrary statements as a regular function can.

SML

val f = fn x=>x*2;
f(3);
link|flag
I didn't see the first example when writing this (although our example functions are identical) – Bill Zeller Dec 23 '08 at 3:41
vote up 1 vote down

Ocaml:

fun x -> 2 * x
link|flag
vote up 2 vote down

Lua:

f = function (x) return 2 * x end
link|flag
By far the most readable example out of all of this, +1! – RCIX Nov 3 at 1:35
vote up 4 vote down

Haskell:

\x -> 2 * x
link|flag
1  
Although not a lambda (but rather partial function application), the following would also work in this example: (2*) – Tom Lokhorst Dec 23 '08 at 22:51
vote up 2 vote down

Perl:

$f = sub { 2 * $_[0] };
link|flag
vote up 4 vote down

LISP (Common Lisp/Scheme):

(lambda (y) (* y 2))

JavaScript:

x = function(y) { return 2*y; };

Python:

lambda x: 2*x

PHP (>= 5.3):

$x = function(y) { return 2 * y; };
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.