Go Closures: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
Line 36: Line 36:
</pre>
</pre>


More about closures is available [[Programming#Closures|here]].
More about closures is available [[Programming_Languages_Concepts#Closures|here]].

Revision as of 01:04, 17 September 2021

Internal

Overview

A closure is an anonymous functions declared within a block - and implicitly, within another function. The function continues to have access to the local variables it had access when it was created for the duration of its life. The function isn't given a copy of this variables, it has direct access to the same variables declared in the scope of the outer function: if the value of the variable changes in the outer function, that is reflected in the inner function. The function together with the non local variables it references is known as a closure.

inClosuresScope := 10

var c = func (i int) {
    inClosuresScope += i
}

s := []int {1, 2, 3, 4, 5}

for _, value := range s {
     c(value);
}

Alternatively, the function literal and invocation can be defined in-line:

inClosuresScope := 10

s := []int {1, 2, 3, 4, 5}

for _, value := range s {
     func (i int) {
         inClosuresScope += i
     }(value);
}

More about closures is available here.