Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
What is the => token called?

Hey,

In LINQ what is the name of the => operator e.g:

list.Where(a => a.value == 5);
share|improve this question
Operators as such are hard to search for, but the combination '<language> operators' pretty quickly leads to the desired information usually. – 0xA3 Nov 4 '10 at 22:32
On a side note are you familiar with the --> operator: stackoverflow.com/questions/1642028/… – user295190 Nov 4 '10 at 22:36
1  
@Shiftbit Snark hunting, are we? – Michael Todd Nov 4 '10 at 22:37

marked as duplicate by StriplingWarrior, 0xA3, Brandon, RPM1984, Michael Todd Nov 4 '10 at 22:36

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

6 Answers

up vote 19 down vote accepted

It's called the lambda operator and is pronounced "goes to".

From here.

share|improve this answer
5  
+1 just for beating skeet by 5 seconds :) There should be badge for that – Dennis Burton Nov 4 '10 at 22:32
@Dennis Trust me. I was shocked when I hit Save and Jon's answer appeared. However, I think he beat me by 4 seconds. (I had to go look it up. Jon knew it.) – Michael Todd Nov 4 '10 at 22:32
2  
@Dennis: Um, I think I beat Michael. At least, my answer has the lower post ID :) – Jon Skeet Nov 4 '10 at 22:33
yup, 4 seconds. – Femaref Nov 4 '10 at 22:35
"Goes to"? That's silly, goes to what? The variable isn't going anywhere. If for some reason I was averse to just saying "a in lambda" I would probably use "for...in expression..." as in "for a in the expression a dot value equals 5". I guess "goes to" is shorter though. :P – CodexArcanum Nov 4 '10 at 22:39
show 1 more comment

It's the lambda operator. Or at least, an expression of the form

x => y

(or any of the longer forms involving =>) is a lambda expression. (I don't personally tend to think of it as an operator as such, even though the linked page refers to the lambda operator. The C# 4 spec doesn't contain the phrase "lambda operator" anywhere.)

share|improve this answer
+1 for beating Jon Skeet... – ChaosPandion Nov 4 '10 at 22:33
8  
@Chaos, did you mean +1 for being Jon Skeet? – adrift Nov 4 '10 at 22:37
@adrift +1, too funny ! – FreekOne Nov 4 '10 at 22:44
@adrift: No, Jon Skeet and only Jon Skeet can beat Jon Skeet. – Reese Moore Nov 4 '10 at 22:44
haha, just out of curiosity, how did Jon Skeet become the Chuck Norris of SO? (this is definitely not a complaint btw) – jb. Nov 5 '10 at 5:37

The lambda operator.

share|improve this answer

its called ... lambda

share|improve this answer

You read it as "such that". So your example reads as "list where a such that a dot value equals 5"

share|improve this answer

Its used to create delegates or expression tree types, and yes the new term for it is lambda expression

share|improve this answer

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