Does Go support lambda expressions or anything similiar?
I want to port a library from another language that uses lambda expressions (Ruby).
|
Does Go support lambda expressions or anything similiar? I want to port a library from another language that uses lambda expressions (Ruby). |
|||
|
|
|
Here is an example, copied and pasted carefully:
|
|||||||||
|
|
Lambda expressions are also called function literals. Go supports them completely. See the language spec: http://golang.org/ref/spec#Function_literals See a code-walk, with examples and a description: http://golang.org/doc/codewalk/functions/ |
|||
|
|