For a person without a comp-sci background, what is a lambda in the world of Computer Science?
|
|
|
Lambda comes from the Lambda Calculus and refers to anonymous functions in programming. Why is this cool? It allows you to write quick throw away functions without naming them. It also provides a nice way to write closures. With that power you can do things like this. Python
JavaScript
Scheme
As you can see from the snippet of Python and JavaScript, the function adder takes in an argument x, and returns an anonymous function, or lambda, that takes another argument y. That anonymous function allows you to create functions from functions. This is a simple example, but it should convey the power lambdas and closures have. |
|||||||||||||||
|
|
A lambda is a type of function, defined inline. Along with a lambda you also usually have some kind of variable type that can hold a reference to a function, lambda or otherwise. For instance, here's a C# piece of code that doesn't use a lambda:
This calls Calculator, passing along not just two numbers, but which method to call inside Calculator to obtain the results of the calculation. In C# 2.0 we got anonymous methods, which shortens the above code to:
And then in C# 3.0 we got lambdas which makes the code even shorter:
|
|||||||||
|
|
It refers to the lambda calculus which is a formal system that just has lambda expressions, which represents a function that takes a function for its sole argument and returns a function. All functions in the lambda calculus are of that type, i.e., Lisp used the lambda concept to name its anonymous function literals. This lambda represents a function that takes two arguments, x and y, and returns their product:
It can be applied in-line like this (evaluates to 50):
|
||||
|
|
|
The name "lambda" is just a historical artifact. All we're talking about is an expression whose value is a function. A simple example (using Scala for the next line) is:
where the argument to the
except that you don't need to bother with:
Once you're used to function values, having to do without them seems as silly as being required to name every expression, such as:
instead of just writing the expression where you need it:
The exact notation varies from language to language; Greek isn't always required! ;-) |
|||
|
|
Slightly oversimplified: a lambda function is one that can be passed round to other functions and it's logic accessed. In C# lambda syntax is often compiled to simple methods in the same way as anonymous delegates, but it can also be broken down and its logic read. For instance (in C#3):
LinqToSql can read that function (x > 15) and convert it to the actual SQL to execute using expression trees. The statement above becomes:
This is different from normal methods or anonymous delegates (which are just compiler magic really) because they cannot be read. Not all methods in C# that use lambda syntax can be compiled to expression trees (i.e. actual lambda functions). For instance:
Now the expression tree cannot be read - SomeComplexCheck cannot be broken down. The SQL statement will execute without the where, and every row in the data will be put through Lambda functions should not be confused with anonymous methods. For instance:
This also has an 'inline' function, but this time it's just compiler magic - the C# compiler will split this out to a new instance method with an autogenerated name. Anonymous methods can't be read, and so the logic can't be translated out as it can for lambda functions. |
||||
|
|
|
You can think of it as an anonymous function - here's some more info: Wikipedia - Anonymous Function |
|||
|
|
|
I like the explanation of Lambdas in this article: The Evolution Of LINQ And Its Impact On The Design Of C#. It made a lot of sense to me as it shows a real world for Lambdas and builds it out as a practical example. Their quick explanation: Lambdas are a way to treat code (functions) as data. |
|||
|
|
|
You can go visit Lambda Expression tutorial in .net framework |
|||
|
|
|
An example of a lambda in Ruby is as follows:
Will genereate the following output:
|
|||
|
|
|
@Brian I use lambdas all the time in C#, in LINQ and non-LINQ operators. Example:
Before C#, I used anonymous functions in JavaScript for callbacks to AJAX functions, before the term Ajax was even coined:
The interesting thing with C#'s lambda syntax, though, is that on their own their type cannot be infered (i.e., you can't type var foo = (x,y) => x * y) but depending on which type they're assigned to, they'll be compiled as delegates or abstract syntax trees representing the expression (which is how LINQ object mappers do their "language-integrated" magic). Lambdas in LISP can also be passed to a quotation operator and then traversed as a list of lists. Some powerful macros are made this way. |
||||
|
|
|
I have trouble wrapping my head around lambda expressions because I work in Visual FoxPro, which has Macro substitution and the ExecScript{} and Evaluate() functions, which seem to serve much the same purpose.
One definite benefit to using formal lambdas is (I assume) compile-time checking: Fox won't know if you typo the text string above until it tries to run it. This is also useful for data-driven code: you can store entire routines in memo fields in the database and then just evaluate them at run-time. This lets you tweak part of the application without actually having access to the source. (But that's another topic altogether.) |
|||
|
|
|
It is a function that has no name. For e.g. in c# you can use
to return the numbers that are greater than 5.
is the lambda part here. It represents a function which takes a parameter (number) and returns a boolean value (number > 5). GetMatchingItems method uses this lambda on all the items in the collection and returns the matching items. |
|||
|
|
|
Basicly in Javascipt for example functions are treated as the same mixed type as everything else (int, string, float, bool) as such you can create functions on the fly, assign them to things, and call them back later. Its usefull but kinda not somthing you wana over use or u confuse everyone whos got to maintain your code after you... This is some code i was playing with to see how deep this rabit hole goes...
` |
|||
|
|
|
Just because I cant see a C++11 example here, I'll go ahead and post this nice example from here. After searching, it is the clearest languge specific example rhat I could find. Hello, Lambdas, version 1
Hello, Lambdas, version 2:
|
|||
|
|
|
I got it too. I`ve tried it in JS with this one:
It adds 2 to 4 then mults the result by 6. However I find it sometimes hard to read :( Also I`ve made an interesting forEach function:
forEach([1,2,3,4,5])(console.log); This method will iterate an array and performs an action - in the case printing to the console. Now I too get why labmdas are powerful. |
||||
|
|