Y
Hacker News
new
|
ask
|
show
|
jobs
by
arethuza
1753 days ago
I was more thinking of C# where "=>" is the closest thing I can think of to "function".
There is Func<T> - that's a delegate type.
2 comments
mdoms
1753 days ago
I verbalise that as "goes to". In the case of, say,
things.Select(thing => thing.Stuff);
I verbalise the brackets as "thing goes to thing dot stuff".
link
vmladenov
1752 days ago
“Goes to” is what Prof. Elsa Gunter teaches in the PL theory class at Illinois
link
int_19h
1749 days ago
Something like (x, y) => x + y can be verbalized as "lambda of x and y producing x plus y".
link