Golang : On lambda, anonymous, inline functions and function literals
This is just a note for myself and maybe it can be useful to you too. In Golang, lambda, anonymous and inline functions are known as function literals. What it does is to allow you to create a short callback function but without creating a separate named function. In a nutshell, it allows you to specify the one-line function "in-line" a.k.a on the fly...
For example:
package main
import (
"fmt"
)
func main() {
add := func(a ,b int) int { return a + b }
fmt.Println(add(1,2))
}
This one-line function is rarely used, but can be useful in situations where you need to create a short callback function to evaluate various expressions quickly.
Hope this helps!
References:
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+18.5k Golang : Send email with attachment
+13k Golang : Calculate elapsed years or months since a date
+12k Golang : Decompress zlib file example
+5.2k Golang : Generate Interleaved 2 inch by 5 inch barcode
+14.8k Golang : How to check for empty array string or string?
+20.8k Golang : Convert PNG transparent background image to JPG or JPEG image
+6k Golang : Dealing with backquote
+8.9k Golang : Go as a script or running go with shebang/hashbang style
+4.7k PHP : Extract part of a string starting from the middle
+7.8k Swift : Convert (cast) String to Double
+19.9k Golang : How to get time from unix nano example