Le funzioni annidate sono consentite in Go. Hai solo bisogno di assegnarli a variabili locali all'interno della funzione esterna e chiamarli usando quelle variabili.
Esempio:
func outerFunction(iterations int, s1, s2 string) int {
someState := 0
innerFunction := func(param string) int {
totalLength := 0
for i := 0; i < iterations; i++) {
totalLength += len(param)
}
return totalLength
}
someState = innerFunction(s1)
someState += innerFunction(s2)
return someState
}
myVar := outerFunction(100, "blah", "meh")
Le funzioni interne sono spesso utili per i goroutine locali:
func outerFunction(...) {
innerFunction := func(...) {
...
}
go innerFunction(...)
}
func main() { func (x int) int { return x+1; }(3) }