Tagged Questions
an operator used to denote anonymous functions or closures in programming languages such as Lisp, C#, C++ or Python. (Also, lambda expression.)
284
votes
3answers
25k views
Is there a reason for C#'s reuse of the variable in a foreach?
When using lambda expressions or anonymous methods in C#, we have to be wary of the access to modified closure pitfall. For example:
foreach (var s in strings)
{
query = query.Where(i ...
185
votes
21answers
10k views
Abuse of C# lambda expressions or Syntax brilliance?
I am looking at the MvcContrib Grid component and I'm fascinated, yet at the same time repulsed, by a syntactic trick used in the Grid syntax:
.Attributes(style => "width:100%")
The syntax ...
115
votes
2answers
2k views
Is this object-lifetime-extending-closure a C# compiler bug?
I was answering a question about the possibility of closures (legitimately) extending object-lifetimes when I ran into some extremely curious code-gen on the part of the C# compiler (4.0 if that ...
101
votes
13answers
14k views
What is a lambda (function)?
For a person without a comp-sci background, what is a lambda in the world of Computer Science?
90
votes
6answers
97k views
C# List<> OrderBy Alphabetical Order
I'm using C# on Framework 3.5. I'm looking to quickly sort a Generic List<>. For the sake of this example lets say I have a List of a Person type with a property of lastname. How would I sort ...
87
votes
11answers
10k views
When to use lambda, when to use Proc.new?
In Ruby 1.8, there are subtle differences between proc/lambda on the one hand, and Proc.new on the other.
What are those differences?
Can you give guidelines on how to decide which one to ...
77
votes
10answers
6k views
Help a C# developer understand: What is a monad?
There is a lot of talk about monads these days. I have read a few articles / blog posts, but I can't go far enough with their examples to fully grasp the concept. The reason is that monads are a ...
70
votes
9answers
6k views
Wrapping StopWatch timing with a delegate or lambda?
I'm writing code like this, doing a little quick and dirty timing:
var sw = new Stopwatch();
sw.Start();
for (int i = 0; i < 1000; i++)
{
b = DoStuff(s);
}
sw.Stop();
...
68
votes
9answers
18k views
Getting all types that implement an interface with C# 3.5
How can I do what's in the title, with the minimum amount of code, using whatever c# 3.5 syntax (I'm guessing lambda expressions would fit, but I still don't understand them fully)?
In short,
I want ...
61
votes
13answers
4k views
How do I pronounce “=>” as used in lambda expressions in .Net
I very rarely meet any other programmers!
My thought when I first saw the token was "implies that" since that's what it would read it as in a mathematical proof but that clearly isn't its sense.
So ...
60
votes
21answers
22k views
Python Lambda - why?
I'm just beginning Python and ran head first into Lambda- which took me a while to figure out. Is lambda one of those 'interesting' language items that in real life should be forgotten? I'm sure ...
60
votes
5answers
5k views
What is the difference between a 'closure' and a 'lambda'?
Could someone explain? I understand the basic concepts behind them but I often see them used interchangeably and I get confused.
And now that we're here, how do they differ from a regular function?
59
votes
13answers
3k views
What is this 'Lambda' everyone keeps speaking of?
What is this 'Lambda' everyone keeps speaking of? A lot of people seem to love it, but all I can gather from it is it is just a way of cramming lots of lines of code into a single expression.
Can ...
52
votes
10answers
32k views
C# Lambda expression, why should I use this?
I have quickly read the Microsoft Lambda Expression documentation.
I see example that have help me to understand more like this one :
delegate int del(int i);
del myDelegate = x => x * x;
int j = ...
44
votes
7answers
16k views
Distinct() with lambda?
Right, so I have an enumerable and wish to get distinct values from it.
Using System.Linq, there's of course an extension method called Distinct. In the simple case, it can be used with no ...
41
votes
3answers
13k views
Why must a lambda expression be cast when supplied as a plain Delegate parameter
Take the method System.Windows.Forms.Control.Invoke(Delegate method)
Why does this give a compile time error:
string str = "woop";
Invoke(() => this.Text = str);
// Error: Cannot convert lambda ...
39
votes
4answers
2k views
Compiled C# Lambda Expressions Performance
Consider the following simple manipulation over a collection:
static List<int> x = new List<int>() { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
var result = x.Where(i => i % 2 == 0).Where(i ...
36
votes
5answers
12k views
Retrieving Property name from lambda expression
Is there a better way to get the Property name when passed in via a lambda expression?
Here is what i currently have.
eg.
GetSortingInfo<User>(u => u.UserId);
It worked by casting it as ...
34
votes
1answer
702 views
How to write a Haskell function that takes a variadic function as an argument
I'm trying to create a function that gets a variadic function as an argument, i.e.
func :: (a -> ... -> a) -> a
how can I accomplish this?
I've read about polyvariadic functions and I'm ...
34
votes
4answers
9k views
delegate keyword vs. lambda notation
Once it is compiled, is there a difference between:
delegate { x = 0; }
and
() => { x = 0 }
?
31
votes
14answers
5k views
Coolest C# LINQ/Lambdas trick you've ever pulled?
Saw a post about hidden features in C# but not a lot of people have written linq/lambdas example so... I wonder...
What's the coolest (as in the most elegant) use of the C# LINQ and/or ...
30
votes
3answers
545 views
Passing lambda functions as named parameters in C#
Compile this simple program:
class Program
{
static void Foo( Action bar )
{
bar();
}
static void Main( string[] args )
{
Foo( () => Console.WriteLine( "42" ) ...
30
votes
8answers
3k views
What is a Lambda?
Could someone provide a good description of what a Lambda is? We have a tag for them and they're on the secrets of C# question, but I have yet to find a good definition and explanation of what they ...
29
votes
1answer
330 views
Is it valid for a lambda to, essentially, close over itself?
Is this lambda recursion valid?
#include <functional>
#include <iostream>
int main() {
std::function<int(int)> g = [&g](int k) {
return (k ? k * g(k-1) : 1);
};
...
29
votes
4answers
5k views
Why would you use Expression<Func<T>> rather than Func<T>?
I understand lambdas and the Func and Action delegates. But expressions stump me. In what circumstances would you use an Expression<Func<T>> rather than a plain old Func<T>?
29
votes
5answers
6k views
VS debugging “quick watch” tool and lambda expressions
Why can't I use lambda expressions while debugging in “Quick watch” window?
UPD: see also
http://blogs.msdn.com/b/jaredpar/archive/2009/08/26/why-no-linq-in-debugger-windows.aspx
...
29
votes
8answers
6k views
when not to use lambda expressions
A lot of questions are being answered on stackoverflow, with members specifying how to solve these real world/time problems using lambda expressions.
Are we overusing it, are we considering the ...
28
votes
4answers
797 views
What is the type of lambda when deduced with “auto” in C++11?
I had a perception that, type of a lambda is a function pointer. When I performed following test, I found it to be wrong (demo).
#define LAMBDA [] (int i) -> long { return 0; }
int main ()
{
...
28
votes
5answers
538 views
What is the lifetime of a delegate created by a lambda in C#?
Lambdas are nice, as they offer brevity and locality and an extra form of encapsulation. Instead of having to write functions which are only used once you can use a lambda.
While wondering how they ...
28
votes
8answers
49k views
Sorting a list using Lambda/Linq to objects
I have the name of the "sort by property" in a string. I will need to use Lambda/Linq to sort the list of objects.
Ex:
public class Employee
{
public string FirstName {set; get;}
public string ...
27
votes
14answers
2k views
What is the smoothest, most appealing syntax you've found for asserting parameter correctness in c#?
A common problem in any language is to assert that parameters sent in to a method meet your requirements, and if they don't, to send nice, informative error messages. This kind of code gets repeated ...
26
votes
3answers
7k views
How to convert a String to its equivalent Expression Tree?
This is a simplified version of the original problem.
I have a class called Person:
public class Person {
public string Name { get; set; }
public int Age { get; set; }
public int Weight ...
26
votes
5answers
8k views
Recursive lambda expression to traverse a tree in C#
Can someone show me how to implement a recursive lambda expression to traverse a tree structure in C#.
25
votes
3answers
431 views
Why is calling a Python lambda expression from C# not thread-safe?
I define a side-effect-free (pure) lambda expression in IronPython and assign it to a C# delegate. When invoking the delegate simultaneously from multiple threads i get exceptions of type ...
25
votes
1answer
7k views
C#: How to remove a lambda event handler [closed]
Possible Duplicates:
Unsubscribe anonymous method in C#
How do I Unregister ‘anonymous’ event handler
I recently discovered that I can use lambdas to create simple event ...
25
votes
5answers
3k views
LINQ: Dot Notation vs Query Expression
I am beginning to use LINQ in general (so far toXML and toSQL). I've seen that sometimes there are two or more ways to achieve the same results. Take this simple example, as far as I understand both ...
25
votes
10answers
4k views
Function pointers, Closures, and Lambda
I am just now learning about function pointers and as I was readying the K&R chapter on the subject the first thing that hit me was, "Hey, this is kinda like a closure." I knew this assumption is ...
24
votes
4answers
24k views
OrderBy descending in Lambda expression?
I know in normal linq grammar, "orderby xxx descending" is very easy, but how do I do this in Lambda expression?
23
votes
18answers
2k views
How to replace for-loops with a functional statement in C#?
A colleague once said that God is killing a kitten every time I write a for-loop.
When asked how to avoid for-loops, his answer was to use a functional language. However, if you are stuck with a ...
22
votes
3answers
776 views
C++11 lambda capture semantics
When I use [=] to indicate that I would like all local variables to be captured by value in a lambda, will that result in all local variables in the function being copied, or just all local variables ...
22
votes
3answers
685 views
Returning functions
I wonder if it's possible to write a function that returns a lambda function in C++11. Of course one problem is how to declare such function. Each lambda has a type, but that type is not expressible ...
22
votes
5answers
1k views
C++11 and the Lack of Polymorphic Lambdas - Why?
I've been reviewing the draft version of the C++11 standard. Specifically the section on lambdas, and am confused as to the reasoning for not introducing polymorphic lambdas.
For example, amongst the ...
22
votes
6answers
1k views
One shot events using Lambda in C#
I find myself doing this sort of thing quite often:-
EventHandler eh = null; //can't assign lambda directly since it uses eh
eh = (s, args) =>
{
//small snippet of code here
...
22
votes
4answers
2k views
What use is lambda in PHP?
The lambda anonymous function is part of PHP 5.3. What use is it? Are there some things that one can only do with lambda? Is lambda better certain for some tasks?
I've seen the Fibonacci example, ...
21
votes
3answers
4k views
No Multiline Lambda in Python: Why not?
I've heard it said that multiline lambdas can't be added in Python because they would clash syntactically with the other syntax constructs in Python. I was thinking about this on the bus today and ...
21
votes
9answers
2k views
Good explanation of “Combinators” (For non mathematicians)
Anyone got a good explanation of "combinators" (Y-combinators etc. and NOT the company)
I'm looking for one for the practical programmer who understands recursion and higher-order functions, but ...
20
votes
4answers
638 views
Why can't I create a vector of lambda in C++11?
I was trying to create a vector of lambda, but failed:
auto ignore = [&]() { return 10; }; //1
std::vector<decltype(ignore)> v; //2
v.push_back([&]() { return 100; }); //3
Up to ...
20
votes
7answers
569 views
Should I use std::for_each?
I'm always trying to learn more about the languages I use (different styles, frameworks, patterns, etc). I've noticed that I never use std::for_each so I thought that perhaps I should start. The goal ...
20
votes
2answers
772 views
C# and F# lambda expressions code generation
Let's look at the code, generated by F# for simple function:
let map_add valueToAdd xs =
xs |> Seq.map (fun x -> x + valueToAdd)
The generated code for lambda expression (instance of F# ...
20
votes
9answers
1k views
Lambda for Dummies…anyone, anyone? I think not
In my quest to understand the very odd looking ' => ' operator, I have found a good place to start, and the author is very concise and clear:
parameters => expression
Does anyone have any tips ...