Closures/Value capture: Difference between revisions

m
 
(23 intermediate revisions by 13 users not shown)
Line 1:
[[Category:Functions and subroutines]]
{{task}}
 
Line 15 ⟶ 16:
 
See also: [[Multiple distinct objects]]
=={{header|11l}}==
<syntaxhighlight lang="11l">[(() -> Int)] funcs
L(i) 10
funcs.append(() -> @=i * @=i)
print(funcs[3]())</syntaxhighlight>
 
{{out}}
<pre>
9
</pre>
 
=={{header|Acornsoft Lisp}}==
 
Since this Lisp is dynamically scoped and does not have any built-in closure mechanism, we have to construct one which we'll call <code>freeze</code>. (The name is inspired by the [[Pop-2]] programming languages's "frozen formals".)
 
('''freeze''' ''varlist lambda-expr'') finds the current values of the variables in ''varlist'' and returns a lambda-expression that is like the original except that, when called, it binds those variables to their captured values. For example, if <code>a</code>'s value is 1 and <code>b</code>'s is 2,
 
<syntaxhighlight lang="lisp">
(freeze '(a b) '(lambda (c) (list a b c)))
</syntaxhighlight>
 
would return
 
<syntaxhighlight lang="lisp">
(lambda (c)
((lambda ((a . 1) (b . 2))
(list a b c))))
</syntaxhighlight>
 
What does that mean? A cons (''name'' . ''value'') in a lambda-expressions's formal parameters is the syntax for a formal with a default value. The ''value'' is literally the value; it's not an expression that's evaluated. This
 
<syntaxhighlight lang="lisp">
( (lambda ((a . 1) (b . 2))
(list a b c)) )
</syntaxhighlight>
 
calls the function represented by that lambda-expression. Since it does not give the function any arguments, <code>a</code> and <code>b</code> get their default values (which are the values captured by <code>freeze</code>).
 
(Although code within such a 'closure' can assign new values to the captured variables, it would have only a temporary effect and would not change the values seen in subsequent calls to the same closure. That's one sense in which the variable values are "frozen".)
 
Here is the definition of <code>freeze</code>:
 
<syntaxhighlight lang="lisp">
(defun freeze (_fvars_ _lambda-expr_)
(freeze-vars
(mapc cons _fvars_ (mapc eval _fvars_))
(cadr _lambda-expr_)
(cddr _lambda-expr_)))
 
(defun freeze-vars (bindings lvars lbody)
(list 'lambda lvars
(list (cons 'lambda (cons bindings lbody)))))
</syntaxhighlight>
 
Once we have <code>freeze</code>, we can create a list of square-returning functions and then call them:
 
<syntaxhighlight lang="lisp">
(defun range (from to)
(cond ((greaterp from to) '())
(t (cons from (range (add1 from) to)))))
 
(defun example ()
(mapc '(lambda (f) (f))
(mapc '(lambda (i)
(freeze '(i) '(lambda () (times i i))))
(range 1 10))))
</syntaxhighlight>
 
{{Out}}
 
<code>(example)</code> returns
<pre>(1 4 9 16 25 36 49 64 81 100)</pre>
 
=={{header|Ada}}==
Line 20 ⟶ 93:
One way to realize closures in Ada is the usage of protected objects.
 
<langsyntaxhighlight lang="Ada">with Ada.Text_IO;
 
procedure Value_Capture is
Line 49 ⟶ 122:
Ada.Text_IO.Put(Integer'Image(A(I).Result));
end loop;
end Value_Capture;</langsyntaxhighlight>
 
{{out}}
<pre> 1 4 9 16 25 36 49 64 81</pre>
 
=={{header|ALGOL 68}}==
{{works with|ALGOL 68G|2.8}}
 
<langsyntaxhighlight lang="algol68">
[1:10]PROC(BOOL)INT squares;
 
Line 70 ⟶ 142:
FOR i FROM 1 TO 10 DO print(squares[i](FALSE)) OD
 
</syntaxhighlight>
</lang>
{{out}}
<pre>
Line 78 ⟶ 150:
 
Using partial parametrization as proposed in Algol Bulletin by Charles Lindsey. Algol68G does not support binding ''all'' actual parameters "partially" without deproceduring, so a PROC(BOOL)INT mode is used instead of a PROC INT. The variable ''captured i'' is passed twice, once by reference and once by value, to demonstrate that it is possible to capture both ways, and a little extra code is added to show that the closure can modify the captured variable.
 
=={{header|AntLang}}==
<langsyntaxhighlight lang="AntLang">fns: {n: x; {n expt 2}} map range[10]
(8 elem fns)[]</langsyntaxhighlight>
 
=={{header|AppleScript}}==
{{trans|JavaScript}}
<langsyntaxhighlight lang="AppleScript">on run
set fns to {}
Line 101 ⟶ 171:
end |λ|
end script
end closure</langsyntaxhighlight>
{{Out}}
<pre>9</pre>
Line 107 ⟶ 177:
Or, in a more functional pattern of composition:
 
<langsyntaxhighlight lang="AppleScript">-- CLOSURE --------------------------------------------------------------------
 
script closure
Line 160 ⟶ 230:
end script
end if
end mReturn</langsyntaxhighlight>
{{Out}}
<pre>9</pre>
=={{header|Arturo}}==
<syntaxhighlight lang="arturo">funcs: [ø]
 
loop 1..10 'f ->
'funcs ++ function [] with 'f [
f * f
]
 
print call funcs\3 []</syntaxhighlight>
 
{{out}}
 
<pre>9</pre>
 
=={{header|Axiom}}==
Using the Spad compiler:
<langsyntaxhighlight lang="Axiom">)abbrev package TESTP TestPackage
TestPackage() : with
test: () -> List((()->Integer))
== add
test() == [(() +-> i^2) for i in 1..10]</langsyntaxhighlight>
 
This can be called from the interpreter using:
<langsyntaxhighlight lang="Axiom">[x() for x in test()]</langsyntaxhighlight>
 
{{out}}
<langsyntaxhighlight lang="Axiom">[1,4,9,16,25,36,49,64,81,100]
Type: List(Integer)</langsyntaxhighlight>
 
=={{header|Babel}}==
 
<langsyntaxhighlight lang="babel">((main {
{ iter
1 take bons 1 take
Line 190 ⟶ 273:
10 times
collect !
{eval %d nl <<} each }))</langsyntaxhighlight>
 
{{out}}
<langsyntaxhighlight lang="babel">100
81
64
Line 202 ⟶ 285:
9
4
1</langsyntaxhighlight>
 
Essentially, a function has been constructed for each value to be squared (10 down to 1). The cp operator ensures that we generate a fresh copy of the number to be squared, as well as the code for multiplying, {*}.
In the final each loop, we eval each of the constructed functions and output the result.
 
=={{header|Bracmat}}==
<langsyntaxhighlight lang="bracmat">( -1:?i
& :?funcs
& whl
Line 216 ⟶ 298:
& whl'(!funcs:%?func %?funcs&out$(!func$))
);
</syntaxhighlight>
</lang>
{{out}}
<pre>0
Line 227 ⟶ 309:
49
64</pre>
 
=={{header|C}}==
 
Line 234 ⟶ 315:
Non-portable. Copying a function body depends on implementation-specific semantics of volatile, if the replacement target still exists after optimization, if the dest memory is suitably aligned, if the memory is executable, if it makes any function calls to a relative offset, if it refers to any memory location with an absolute address, etc. It only very occasionally works.
 
<langsyntaxhighlight lang="c">#include <stdio.h>
#include <string.h>
#include <stdlib.h>
Line 274 ⟶ 355:
return 0;
}</langsyntaxhighlight>
{{out}}
<syntaxhighlight lang="text">func[0]: 0
func[1]: 1
func[2]: 4
Line 284 ⟶ 365:
func[6]: 36
func[7]: 49
func[8]: 64</langsyntaxhighlight>
 
===Greenspunned mini Lisp dialect===
Line 290 ⟶ 371:
See [[Closures/Variable_capture/C]] for complete code. The relevant excerpt is:
 
<langsyntaxhighlight lang="c">void init(void)
{
t = intern(lit("t"));
Line 322 ⟶ 403:
}
return 0;
}</langsyntaxhighlight>
 
Here, we create an environment explicitly as an association list
Line 342 ⟶ 423:
0
</pre>
 
=={{header|C sharp|C#}}==
===Using Linq===
<langsyntaxhighlight lang="csharp">using System;
using System.Linq;
 
Line 359 ⟶ 439:
}
}
}</langsyntaxhighlight>
{{out}}
<syntaxhighlight lang="text">0
1
4
Line 369 ⟶ 449:
36
49
64</langsyntaxhighlight>
 
===Using delegates only===
 
<langsyntaxhighlight lang="csharp">
using System;
using System.Collections.Generic;
Line 396 ⟶ 476:
}
}
</syntaxhighlight>
</lang>
{{out}}
<syntaxhighlight lang="text">0
1
4
Line 406 ⟶ 486:
36
49
64</langsyntaxhighlight>
 
=={{header|C++}}==
{{works with|C++11}}
<langsyntaxhighlight lang="cpp">#include <iostream>
#include <functional>
#include <vector>
Line 421 ⟶ 500:
std::cout << f( ) << std::endl ;
return 0;
}</langsyntaxhighlight>
{{out}}
<pre>0
Line 434 ⟶ 513:
81
</pre>
 
=={{header|Ceylon}}==
<langsyntaxhighlight lang="ceylon">shared void run() {
//create a list of closures with a list comprehension
Line 444 ⟶ 522:
print("closure number ``i`` returns: ``closure()``");
}
}</langsyntaxhighlight>
 
=={{header|Clojure}}==
<langsyntaxhighlight lang="clojure">(def funcs (map #(fn [] (* % %)) (range 11)))
(printf "%d\n%d\n" ((nth funcs 3)) ((nth funcs 4)))</langsyntaxhighlight>
{{Out}}
<pre>9
16</pre>
 
=={{header|CoffeeScript}}==
 
<langsyntaxhighlight lang="coffeescript">
# Generate an array of functions.
funcs = ( for i in [ 0...10 ] then do ( i ) -> -> i * i )
Line 461 ⟶ 537:
# Call each function to demonstrate value capture.
console.log func() for func in funcs
</syntaxhighlight>
</lang>
 
=={{header|Common Lisp}}==
<langsyntaxhighlight lang="lisp">CL-USER> (defparameter alist
(loop for i from 1 to 10
collect (cons i (let ((i i))
Line 472 ⟶ 547:
4
CL-USER> (funcall (cdr (assoc 8 alist)))
64</langsyntaxhighlight>
 
The ''loop'' mutates its binding ''i''. The purpose of <code>(let ((i i)) ...)</code> is to create a different binding ''i'' for each ''lambda'' to capture. Otherwise, all 10 lambdas would capture the same binding and return 100.
 
=={{header|D}}==
===Less Functional Version===
<langsyntaxhighlight lang="d">import std.stdio;
 
void main() {
Line 487 ⟶ 561:
 
writeln(funcs[3]());
}</langsyntaxhighlight>
{{out}}
<pre>9</pre>
===More Functional Version===
<langsyntaxhighlight lang="d">void main() {
import std.stdio, std.range, std.algorithm;
 
10.iota.map!(i => () => i ^^ 2).map!q{ a() }.writeln;
}</langsyntaxhighlight>
{{out}}
<pre>[0, 1, 4, 9, 16, 25, 36, 49, 64, 81]</pre>
 
=={{header|Delphi}}==
{{works with|Delphi 2009}}
<langsyntaxhighlight lang="Delphi">program Project1;
 
type
Line 527 ⟶ 600:
for i := Low(Funcs) to High(Funcs) do
Writeln(Funcs[i]());
end.</langsyntaxhighlight>
{{out}}
<pre>0
Line 540 ⟶ 613:
81
</pre>
 
=={{header|Dyalect}}==
Dyalect captures variables by reference, therefore a way to achieve this is to capture a variable through a closure which in its turn returns a anonymous function like so:
 
<langsyntaxhighlight lang="dyalect">var xs = []
let num = 10
 
for n in 0..<num {
xs.addAdd((n => () => n * n)(n))
}
 
for x in xs {
print(x())
}</langsyntaxhighlight>
 
{{out}}
Line 569 ⟶ 641:
 
This is similar to a JavaScript (ES6) solution.
 
=={{header|EchoLisp}}==
<langsyntaxhighlight lang="scheme">
(define (fgen i) (lambda () (* i i)))
(define fs (for/vector ((i 10)) (fgen i))) ;; vector of 10 anonymous functions
((vector-ref fs 5)) ;; calls fs[5]
→ 25
</syntaxhighlight>
</lang>
 
=={{header|Elena}}==
ELENA 46.1x :
<langsyntaxhighlight lang="elena">import system'routines;
import extensions;
public program()
{
var functions := Array.allocate(10).populate::(int i => { ^ i * i} );
functions.forEach::(func) { console.printLine(func()) }
}</langsyntaxhighlight>
{{out}}
<pre>0
Line 602 ⟶ 672:
 
=={{header|Elixir}}==
<langsyntaxhighlight lang="elixir">funs = for i <- 0..9, do: (fn -> i*i end)
Enum.each(funs, &IO.puts &1.())</langsyntaxhighlight>
 
{{out}}
Line 618 ⟶ 688:
81
</pre>
 
=={{header|Emacs Lisp}}==
As of Emacs 24.3, lexical closures are supported, therefore alleviating hacks such as lexical-let.
Emacs Lisp now has lexical-let, which allows for the capture of variables.
<lang lisp>
(require 'cl)
(mapcar 'funcall
(mapcar (lambda (x)
(lexical-let ((x x))
(lambda () (* x x)))) [1 2 3 4 5 6 7 8 9 10]))
;; => (1 4 9 16 25 36 49 64 81 100)
</lang>
 
<syntaxhighlight lang="lisp">;; -*- lexical-binding: t; -*-
(mapcar #'funcall
(mapcar (lambda (x)
(lambda ()
(* x x)))
'(1 2 3 4 5 6 7 8 9 10)))
;; => (1 4 9 16 25 36 49 64 81 100)</syntaxhighlight>
=={{header|Erlang}}==
Erlang uses lexical scoping and has anonymous functions.
<langsyntaxhighlight lang="erlang">
-module(capture_demo).
-export([demo/0]).
Line 646 ⟶ 714:
io:fwrite("~B~n",[F()])
end, Funs).
</syntaxhighlight>
</lang>
<pre>
1> capture_demo:demo().
Line 661 ⟶ 729:
ok
</pre>
=={{header|F_Sharp|F#}}==
 
=={{header|F#}}==
Nearly identical to OCaml
<langsyntaxhighlight lang="fsharp">[<EntryPoint>]
let main argv =
let fs = List.init 10 (fun i -> fun () -> i*i)
do List.iter (fun f -> printfn "%d" <| f()) fs
0</langsyntaxhighlight>
 
With List.map
<langsyntaxhighlight lang="fsharp">[<EntryPoint>]
let main argv =
let fs = List.map (fun i -> fun () -> i*i) [0..9]
do List.iter (fun f -> printfn "%d" <| f()) fs
0</langsyntaxhighlight>
 
With List.mapi
<langsyntaxhighlight lang="fsharp">[<EntryPoint>]
let main argv =
let fs = List.mapi (fun i x -> fun () -> i*i) (List.replicate 10 None)
do List.iter (fun f -> printfn "%d" <| f()) fs
0</langsyntaxhighlight>
 
With an infinite sequence
<langsyntaxhighlight lang="fsharp">[<EntryPoint>]
let main argv =
let fs = Seq.initInfinite (fun i -> fun () -> i*i)
do Seq.iter (fun f -> printfn "%d" <| f()) (Seq.take 10 fs)
0</langsyntaxhighlight>
 
{{out}}
Line 704 ⟶ 771:
81
</pre>
 
=={{header|Factor}}==
===Using lexical variables===
<langsyntaxhighlight lang="factor">USING: io kernel locals math prettyprint sequences ;
 
[let
Line 720 ⟶ 786:
seq nth call .
] each
]</langsyntaxhighlight>
 
<pre>$ ./factor script.factor
Line 733 ⟶ 799:
Forget the variable! Each ''fried quotation'' captures some values by pulling them from the stack.
 
<langsyntaxhighlight lang="factor">USING: fry io kernel math prettyprint sequences ;
 
! Push a sequence of 10 quotations
Line 744 ⟶ 810:
over nth call .
] each
drop</langsyntaxhighlight>
 
=={{header|Fantom}}==
 
<langsyntaxhighlight lang="fantom">
class Closures
{
Line 766 ⟶ 831:
}
}
</syntaxhighlight>
</lang>
 
{{out}}
Line 772 ⟶ 837:
Function at index: 7 outputs 49
</pre>
 
=={{header|Forth}}==
<langsyntaxhighlight lang="forth">: xt-array here { a }
10 cells allot 10 0 do
:noname i ]] literal dup * ; [[ a i cells + !
loop a ;
 
xt-array 5 cells + @ execute .</langsyntaxhighlight>
 
{{out}}
 
<syntaxhighlight lang ="forth">25</langsyntaxhighlight>
 
=={{header|FreeBASIC}}==
 
FreeBASIC doesn't support closures or anonymous methods, as such. However, what we can do is to create an array of objects to capture their index and then call a method on those objects which squares the index. This approach is similar to how some other object oriented languages implement closures 'under the hood'.
 
<langsyntaxhighlight lang="freebasic">' FB 1.05.0 Win64
 
Type Closure
Line 821 ⟶ 884:
Print
Print "Press any key to quit"
Sleep</langsyntaxhighlight>
 
{{out}}
Line 835 ⟶ 898:
81
</pre>
 
=={{header|Go}}==
<langsyntaxhighlight lang="go">package main
 
import "fmt"
Line 851 ⟶ 913:
fmt.Println("func #0:", fs[0]())
fmt.Println("func #3:", fs[3]())
}</langsyntaxhighlight>
{{out}}
<pre>
Line 857 ⟶ 919:
func #3: 9
</pre>
 
=={{header|Groovy}}==
Solution:
<langsyntaxhighlight lang="groovy">def closures = (0..9).collect{ i -> { -> i*i } }</langsyntaxhighlight>
 
Test:
<langsyntaxhighlight lang="groovy">assert closures instanceof List
assert closures.size() == 10
closures.each { assert it instanceof Closure }
println closures[7]()</langsyntaxhighlight>
 
{{out}}
<pre>49</pre>
 
=={{header|Haskell}}==
 
Using <code>map</code>:
 
<langsyntaxhighlight lang="haskell">fs = map (\i _ -> i * i) [1 .. 10]</langsyntaxhighlight>
 
Using list comprehensions:
 
<langsyntaxhighlight lang="haskell">fs = [const $ i * i | i <- [1 .. 10]]</langsyntaxhighlight>
 
Using infinite lists:
 
<langsyntaxhighlight lang="haskell">fs = take 10 coFs where coFs = [const $ i * i | i <- [1 ..]]</langsyntaxhighlight>
 
Testing:
 
<langsyntaxhighlight lang="haskell">> :t fs
fs :: [b -> Integer]
> map ($ ()) fs
Line 894 ⟶ 954:
100
> fs !! 8 $ undefined
81</langsyntaxhighlight>
 
=={{header|Icon}} and {{header|Unicon}}==
This uses Unicon specific calling sequences for co-expressions. It can be made to run under Icon by modifying the calling syntax.
 
<langsyntaxhighlight lang="Unicon">procedure main(args) # Closure/Variable Capture
every put(L := [], vcapture(1 to 10)) # build list of index closures
write("Randomly selecting L[",i := ?*L,"] = ",L[i]()) # L[i]() calls the closure
Line 913 ⟶ 972:
procedure makeProc(A) # the makeProc PDCO from the UniLib Utils package
return (@A[1], A[1])
end</langsyntaxhighlight>
 
{{libheader|Unicon Code Library}}
Line 923 ⟶ 982:
<pre>Randomly selecting L[8] = 64</pre>
 
=={{headerHeader|IoInsitux}}==
<lang>blist := list(0,1,2,3,4,5,6,7,8,9) map(i,block(i,block(i*i)) call(i))
writeln(blist at(3) call) // prints 9</lang>
 
<syntaxhighlight lang="insitux">
(var funcs (for x (range 11) #(* x x)))
 
[(0 funcs) ((3 funcs)) ((4 funcs))]
</syntaxhighlight>
 
{{out}}
 
<pre>
[#(* x x) 9 16]
</pre>
 
=={{header|Io}}==
<syntaxhighlight lang="text">blist := list(0,1,2,3,4,5,6,7,8,9) map(i,block(i,block(i*i)) call(i))
writeln(blist at(3) call) // prints 9</syntaxhighlight>
=={{header|J}}==
 
Line 933 ⟶ 1,005:
The natural way of implementing this in J is to define a function which produces a gerund of a constant function.
 
<langsyntaxhighlight lang="j">constF=:3 :0
{.''`(y "_)
)</langsyntaxhighlight>
 
Thus, a list of 10 functions each producing a value in 0..9, and another with their squares:
 
<langsyntaxhighlight lang="j">flist=: constF"0 i.10
slist=: constF"0 *:i.10</langsyntaxhighlight>
 
Referencing a function by its index (its position in that list):
 
<langsyntaxhighlight lang="j"> flist @.3
3"_
slist @.3
9"_</langsyntaxhighlight>
 
Using a function, given its index:
 
<langsyntaxhighlight lang="j"> flist @.4''
4
slist @.4''
16</langsyntaxhighlight>
 
Running a randomly picked function which is not the last one:
 
<langsyntaxhighlight lang="j"> flist@.(?9) ''
7
slist@.(?9) ''
25</langsyntaxhighlight>
 
===Using temporary locales===
The problem statement "Demonstrate how to create a series of independent closures based on the same template but maintain separate copies of the variable closed over" conflicts with the problem title "Value capture" in languages have sufficient abstraction to distinguish between value capture and variable and variable capture. This conflict even appears in J, and in general cases can require treatment of issues well outside the scope of this task.
 
Still, to address the task description, we should include a "variable capture" implementation, which in J could imply the use of "temporary [[j:Vocabulary/Locales#Summary_of_the_Locale_Mechanism|locales]]" despite the fact that this approach would not satisfy the "simplest fashion possible" requirement.
 
For example, we could define an adverb 'geni' which takes a base function (which in this case will be <code>*:</code> -- a function which squares an argument) and a value (which in this case will be an index), creates a locale where that value will be stored in a variable named <code>i</code> and then returns an anonymous function which takes a reference to the locale (rather than the value) and extracts the value from the locale to generate the result.
 
We'll also use J's nuvoc <code><nowiki>{{</nowiki></code> ... <code><nowiki>}}</nowiki></code> nesting definitional mechanism which implicitly determines the type of a definition instead of explicitly representing the definition types (<code>1 :</code>, <code>2 :</code>, <code>3 :</code>, ...) which discourages nesting blocks.
 
<syntaxhighlight lang=J>
geni=: {{
N=. cocreate''
i__N=. y
N
}}
task=: {{ u {{ u {{ u i__n [ y }} (geni y)`'' }}"0 i. y }}
</syntaxhighlight>
 
This would be really bad form if we were intending to be useful, but - as described above - this approach is somewhat relevant to the task requirements.
 
Example use:
<syntaxhighlight lang=J>
fns=: *: task 10
fns@.3 ''
9
fns@.5 ''
25
fns@.7 ''
49
</syntaxhighlight>
 
 
===Tacit (unorthodox) version===
In J only adverbs and conjunctions (functionals) can produce verbs (functions)... Unless they are forced to cloak as verbs; in this instance, the rank conjunction (“) cloaks as a dyadic verb. (NoteThis thatdoes not work in recent versions of J as this takes advantage of a bug/feature where the interpreter does not produce a result with [http://www.jsoftware.com/help/dictionary/dictb.htm the correct shape]):
 
<langsyntaxhighlight lang="j"> ( VL=. (<@:((<'"')(0:`)(,^:)&_))"0@:(^&2)@:i. 10 ) NB. Producing a list of boxed anonymous verbs (functions)
┌───┬───┬───┬───┬────┬────┬────┬────┬────┬────┐
│0"_│1"_│4"_│9"_│16"_│25"_│36"_│49"_│64"_│81"_│
Line 974 ⟶ 1,078:
25"_
{::&VL 5 '' NB. Invoking the 6th verb with a dummy argument ('')
25</langsyntaxhighlight>
 
=={{header|Java}}==
{{works with|Java|8+}}
<langsyntaxhighlight lang="java">import java.util.function.Supplier;
import java.util.ArrayList;
 
Line 992 ⟶ 1,096:
System.out.println(foo.get()); // prints "9"
}
}</langsyntaxhighlight>
 
Alternative implementation that also {{works with|Java|8+}}
<langsyntaxhighlight lang="java">import java.util.List;
import java.util.function.IntSupplier;
import java.util.stream.IntStream;
Line 1,011 ⟶ 1,115:
System.out.println(closure.getAsInt()); // prints "9"
}
}</langsyntaxhighlight>
 
=={{header|JavaScript}}==
 
===Imperative===
 
<langsyntaxhighlight lang="javascript">var funcs = [];
for (var i = 0; i < 10; i++) {
funcs.push( (function(i) {
Line 1,023 ⟶ 1,126:
})(i) );
}
window.alert(funcs[3]()); // alerts "9"</langsyntaxhighlight>
 
{{works with|JavaScript|1.7+}} (Firefox 2+)
<langsyntaxhighlight lang="javascript"><script type="application/javascript;version=1.7">
var funcs = [];
for (var i = 0; i < 10; i++) {
Line 1,034 ⟶ 1,137:
}
window.alert(funcs[3]()); // alerts "9"
</script></langsyntaxhighlight>
 
{{works with|JavaScript|ES6}}
<langsyntaxhighlight lang="javascript">"use strict";
let funcs = [];
for (let i = 0; i < 10; ++i) {
funcs.push((i => () => i*i)(i));
}
console.log(funcs[3]());</langsyntaxhighlight>
 
===Functional ===
Line 1,048 ⟶ 1,151:
{{works with|JavaScript|ES5}}
 
<langsyntaxhighlight lang="javascript">(function () {
'use strict';
 
Line 1,068 ⟶ 1,171:
return lstFns[3]();
 
})();</langsyntaxhighlight>
 
{{out}}
Line 1,076 ⟶ 1,179:
 
{{works with|JavaScript|ES6}}
<langsyntaxhighlight lang="javascript">let funcs = [...Array(10).keys()].map(i => () => i*i);</langsyntaxhighlight>
{{out}}
<pre>
Line 1,082 ⟶ 1,185:
9
</pre>
 
=={{header|Julia}}==
<langsyntaxhighlight lang="julia">funcs = [ () -> i^2 for i = 1:10 ]</langsyntaxhighlight>
{{out}}
<pre>
Line 1,090 ⟶ 1,192:
49
</pre>
 
=={{header|Kotlin}}==
<langsyntaxhighlight lang="scala">// version 1.0.6
 
fun main(args: Array<String>) {
Line 1,099 ⟶ 1,200:
// call all but the last
(0 .. 8).forEach { println(funcs[it]()) }
}</langsyntaxhighlight>
 
{{out}}
Line 1,113 ⟶ 1,214:
64
</pre>
 
=={{header|Lambdatalk}}==
 
A translation from Javascript
<langsyntaxhighlight lang="scheme">
{def A
{A.new
Line 1,128 ⟶ 1,228:
{A.get 4 {A}}
-> 16
</syntaxhighlight>
</lang>
 
=={{header|Latitude}}==
 
Latitude is particularly well suited to this challenge, as the various iteration constructs actually take method arguments and <i>call</i> them multiple times. Thus, the loop variable is in fact an argument which is already closed over and distinct at each iteration.
 
<langsyntaxhighlight lang="latitude">functions := 10 times to (Array) map {
takes '[i].
proc { (i) * (i). }.
}.
 
functions visit { println: $1 call. }.</langsyntaxhighlight>
 
{{Out}}
Line 1,152 ⟶ 1,251:
64
81</pre>
 
=={{header|LFE}}==
 
Input at the REPL:
<langsyntaxhighlight lang="lisp">
> (set funcs (list-comp ((<- m (lists:seq 1 10)))
(lambda () (math:pow m 2))))
</syntaxhighlight>
</lang>
 
Output:
<langsyntaxhighlight lang="lisp">
(#Fun<lfe_eval.23.101079464> #Fun<lfe_eval.23.101079464>
#Fun<lfe_eval.23.101079464> #Fun<lfe_eval.23.101079464>
Line 1,168 ⟶ 1,266:
#Fun<lfe_eval.23.101079464> #Fun<lfe_eval.23.101079464>
#Fun<lfe_eval.23.101079464> #Fun<lfe_eval.23.101079464>)
</syntaxhighlight>
</lang>
 
Calling the functions:
<langsyntaxhighlight lang="lisp">
> (funcall (car funcs))
1.0
Line 1,181 ⟶ 1,279:
64.0
 
</syntaxhighlight>
</lang>
 
=={{header|Lingo}}==
 
Lingo doesn't really support closures. But with the limitations described at [https://www.rosettacode.org/wiki/Function_composition#Lingo Function composition] and based on the fact that Lingo allows to create arbitrary code at runtime, the task can be solved like this:
 
<langsyntaxhighlight lang="lingo">-- parent script "CallFunction"
 
property _code
Line 1,210 ⟶ 1,307:
do(me._code)
return res
end</langsyntaxhighlight>
 
<langsyntaxhighlight lang="lingo">funcs = []
repeat with i = 1 to 10
code = "res="&i&"*"&i
Line 1,219 ⟶ 1,316:
 
put call(funcs[3], _movie)
-- 9</langsyntaxhighlight>
 
Since the original task is a little trivial in terms of not depending on runtime arguments, here also a solution for an extended task: let each function[i] return the square of i plus the sum of all arguments passed to it at runtime:
 
<langsyntaxhighlight lang="lingo">funcs = []
repeat with i = 1 to 10
code = ""
Line 1,237 ⟶ 1,334:
 
put call(funcs[7], _movie, 4, 5, 6)
-- 64</langsyntaxhighlight>
 
=={{header|Logtalk}}==
The example that follow uses Logtalk's native support for lambda expressions.
<langsyntaxhighlight lang="logtalk">
:- object(value_capture).
 
Line 1,257 ⟶ 1,353:
 
:- end_object.
</syntaxhighlight>
</lang>
{{out}}
<langsyntaxhighlight lang="text">
| ?- value_capture::show.
Closure 1 : 1
Line 1,272 ⟶ 1,368:
Closure 10 : 100
yes
</syntaxhighlight>
</lang>
 
=={{header|Lua}}==
<langsyntaxhighlight lang="Lua">
funcs={}
for i=1,10 do
Line 1,282 ⟶ 1,377:
funcs[2]()
funcs[3]()
</syntaxhighlight>
</lang>
{{out}}
<pre>4
9
</pre>
 
=={{header|M2000 Interpreter}}==
<langsyntaxhighlight lang="M2000 Interpreter">
Dim Base 0, A(10)
For i=0 to 9 {
Line 1,297 ⟶ 1,391:
Print a(i)()
}
</syntaxhighlight>
</lang>
Print
0
Line 1,311 ⟶ 1,405:
 
Export list to clipboard
<langsyntaxhighlight lang="M2000 Interpreter">
document a$
For i=0 to 9 {
Line 1,318 ⟶ 1,412:
}
Clipboard a$
</syntaxhighlight>
</lang>
 
Using Inventory, and a stack object (reading from position, and another way, we pop functions, using Read)
 
 
<langsyntaxhighlight lang="M2000 Interpreter">
Inventory Alfa
For i=0 to 9 {
Line 1,351 ⟶ 1,445:
}
 
</syntaxhighlight>
</lang>
 
=={{header|Maple}}==
<langsyntaxhighlight lang="Maple">> L := map( i -> (() -> i^2), [seq](1..10) ):
> seq( L[i](),i=1..10);
1, 4, 9, 16, 25, 36, 49, 64, 81, 100
> L[4]();
16
</syntaxhighlight>
</lang>
 
=={{header|Mathematica}} / {{header|Wolfram Language}}==
<langsyntaxhighlight lang="Mathematica">Function[i, i^2 &] /@ Range@10
->{1^2 &, 2^2 &, 3^2 &, 4^2 &, 5^2 &, 6^2 &, 7^2 &, 8^2 &, 9^2 &, 10^2 &}
 
%[[2]][]
->4</langsyntaxhighlight>
 
=={{header|Nemerle}}==
<langsyntaxhighlight lang="Nemerle">using System.Console;
 
module Closures
Line 1,381 ⟶ 1,472:
WriteLine($"$(funcs[2]())");
}
}</langsyntaxhighlight>
{{out}}
<pre>16
4</pre>
 
=={{header|Nim}}==
<langsyntaxhighlight lang="nim">var funcs: seq[proc(): int] = @[]
 
for i in 0..9:
Line 1,395 ⟶ 1,485:
 
for i in 0..8:
echo "func[", i, "]: ", funcs[i]()</langsyntaxhighlight>
 
=={{header|Objeck}}==
<langsyntaxhighlight lang="objeck">use Collection.Generic;
 
class Capture {
Line 1,414 ⟶ 1,503:
}
}
</syntaxhighlight>
</lang>
 
{{output}}
Line 1,429 ⟶ 1,518:
81
</pre>
 
=={{header|Objective-C}}==
{{works with|Cocoa|Mac OS X 10.6+}} with ARC
<langsyntaxhighlight lang="objc">NSMutableArray *funcs = [[NSMutableArray alloc] init];
for (int i = 0; i < 10; i++) {
[funcs addObject:[^ { return i * i; } copy]];
Line 1,439 ⟶ 1,527:
int (^foo)(void) = funcs[3];
NSLog(@"%d", foo()); // logs "9"
</syntaxhighlight>
</lang>
 
=={{header|OCaml}}==
 
All functions in OCaml are closures.
 
<langsyntaxhighlight lang="ocaml">let () =
let cls = Array.init 10 (fun i -> (function () -> i * i)) in
Random.self_init ();
Line 1,451 ⟶ 1,538:
let x = Random.int 9 in
Printf.printf " fun.(%d) = %d\n" x (cls.(x) ());
done</langsyntaxhighlight>
 
{{out}}
Line 1,462 ⟶ 1,549:
fun.(6) = 36
</pre>
 
=={{header|Oforth}}==
<langsyntaxhighlight lang="Oforth">: newClosure(i) #[ i sq ] ;
10 seq map(#newClosure) at(7) perform .</langsyntaxhighlight>
 
{{out}}
Line 1,471 ⟶ 1,557:
49
</pre>
 
=={{header|PARI/GP}}==
{{works with|PARI/GP|2.4.2 and above}}
<langsyntaxhighlight lang="parigp">vector(10,i,()->i^2)[5]()</langsyntaxhighlight>
 
{{out}}
<pre>%1 = 25</pre>
 
=={{header|Perl}}==
<langsyntaxhighlight lang="perl">my @f = map(sub { $_ * $_ }, 0 .. 9); # @f is an array of subs
print $f[$_](), "\n" for (0 .. 8); # call and print all but last</langsyntaxhighlight>
{{out}}
<pre>
Line 1,494 ⟶ 1,578:
64
</pre>
 
=={{header|Phix}}==
Phix does not support closures, but they seem easy enough to emulate
<!--<syntaxhighlight lang="phix">(phixonline)-->
<lang Phix>-- First some generic handling stuff, handles partial_args
<span style="color: #008080;">with</span> <span style="color: #008080;">javascript_semantics</span>
-- of any mixture of any length and element types.
<span style="color: #000080;font-style:italic;">-- First some generic handling stuff, handles partial_args
sequence closures = {}
-- of any mixture of any length and element types.</span>
function add_closure(integer rid, sequence partial_args)
<span style="color: #004080;">sequence</span> <span style="color: #000000;">closures</span> <span style="color: #0000FF;">=</span> <span style="color: #0000FF;">{}</span>
closures = append(closures,{rid,partial_args})
<span style="color: #008080;">function</span> <span style="color: #000000;">add_closure</span><span style="color: #0000FF;">(</span><span style="color: #004080;">integer</span> <span style="color: #000000;">rid</span><span style="color: #0000FF;">,</span> <span style="color: #004080;">sequence</span> <span style="color: #000000;">partial_args</span><span style="color: #0000FF;">)</span>
return length(closures) -- (return an integer id)
<span style="color: #000000;">closures</span> <span style="color: #0000FF;">=</span> <span style="color: #7060A8;">append</span><span style="color: #0000FF;">(</span><span style="color: #000000;">closures</span><span style="color: #0000FF;">,{</span><span style="color: #000000;">rid</span><span style="color: #0000FF;">,</span><span style="color: #000000;">partial_args</span><span style="color: #0000FF;">})</span>
end function
<span style="color: #008080;">return</span> <span style="color: #7060A8;">length</span><span style="color: #0000FF;">(</span><span style="color: #000000;">closures</span><span style="color: #0000FF;">)</span> <span style="color: #000080;font-style:italic;">-- (return an integer id)</span>
 
<span style="color: #008080;">end</span> <span style="color: #008080;">function</span>
function call_closure(integer id, sequence args)
{integer rid, sequence partial_args} = closures[id]
<span style="color: #008080;">function</span> <span style="color: #000000;">call_closure</span><span style="color: #0000FF;">(</span><span style="color: #004080;">integer</span> <span style="color: #000000;">id</span><span style="color: #0000FF;">,</span> <span style="color: #004080;">sequence</span> <span style="color: #000000;">args</span><span style="color: #0000FF;">)</span>
return call_func(rid,partial_args&args)
<span style="color: #0000FF;">{</span><span style="color: #004080;">integer</span> <span style="color: #000000;">rid</span><span style="color: #0000FF;">,</span> <span style="color: #004080;">sequence</span> <span style="color: #000000;">partial_args</span><span style="color: #0000FF;">}</span> <span style="color: #0000FF;">=</span> <span style="color: #000000;">closures</span><span style="color: #0000FF;">[</span><span style="color: #000000;">id</span><span style="color: #0000FF;">]</span>
end function
<span style="color: #008080;">return</span> <span style="color: #7060A8;">call_func</span><span style="color: #0000FF;">(</span><span style="color: #000000;">rid</span><span style="color: #0000FF;">,</span><span style="color: #000000;">partial_args</span><span style="color: #0000FF;">&</span><span style="color: #000000;">args</span><span style="color: #0000FF;">)</span>
 
<span style="color: #008080;">end</span> <span style="color: #008080;">function</span>
-- The test routine to be made into a closure, or ten
-- Note that all external references/captured variables must
<span style="color: #000080;font-style:italic;">-- The test routine to be made into a closure, or ten
-- be passed as arguments, and grouped together on the lhs
-- Note that all external references/captured variables must
function square(integer i)
-- be passed as arguments, and grouped together on the lhs</span>
return i*i
<span style="color: #008080;">function</span> <span style="color: #000000;">square</span><span style="color: #0000FF;">(</span><span style="color: #004080;">integer</span> <span style="color: #000000;">i</span><span style="color: #0000FF;">)</span>
end function
<span style="color: #008080;">return</span> <span style="color: #000000;">i</span><span style="color: #0000FF;">*</span><span style="color: #000000;">i</span>
 
<span style="color: #008080;">end</span> <span style="color: #008080;">function</span>
-- Create the ten closures as asked for.
-- Here, cids is just {1,2,3,4,5,6,7,8,9,10}, however ids would be more
<span style="color: #000080;font-style:italic;">-- Create the ten closures as asked for.
-- useful for a mixed bag of closures, possibly stored all over the shop.
-- Here, cids is just {1,2,3,4,5,6,7,8,9,10}, however ids would be more
-- Likewise add_closure could have been a procedure for this demo, but
-- useful for a mixed bag of closures, possibly stored all over the shop.
-- you would probably want the function in a real-world application.
-- Likewise add_closure could have been a procedure for this demo, but
sequence cids = {}
-- you would probably want the function in a real-world application.</span>
for i=1 to 10 do
<span style="color: #004080;">sequence</span> <span style="color: #000000;">cids</span> <span style="color: #0000FF;">=</span> <span style="color: #0000FF;">{}</span>
--for i=11 to 20 do -- alternative test
<span style="color: #008080;">for</span> <span style="color: #000000;">i</span><span style="color: #0000FF;">=</span><span style="color: #000000;">1</span> <span style="color: #008080;">to</span> <span style="color: #000000;">10</span> <span style="color: #008080;">do</span>
cids &= add_closure(routine_id("square"),{i})
<span style="color: #000080;font-style:italic;">--for i=11 to 20 do -- alternative test</span>
end for
<span style="color: #000000;">cids</span> <span style="color: #0000FF;">&=</span> <span style="color: #000000;">add_closure</span><span style="color: #0000FF;">(</span><span style="color: #7060A8;">routine_id</span><span style="color: #0000FF;">(</span><span style="color: #008000;">"square"</span><span style="color: #0000FF;">),{</span><span style="color: #000000;">i</span><span style="color: #0000FF;">})</span>
-- And finally call em (this loop is blissfully unaware what function
<span style="color: #008080;">end</span> <span style="color: #008080;">for</span>
-- it is actually calling, and what partial_arguments it is passing)
<span style="color: #000080;font-style:italic;">-- And finally call em (this loop is blissfully unaware what function
for i=1 to 10 do
-- it is actually calling, and what partial_arguments it is passing)</span>
printf(1," %d",call_closure(cids[i],{}))
<span style="color: #008080;">for</span> <span style="color: #000000;">i</span><span style="color: #0000FF;">=</span><span style="color: #000000;">1</span> <span style="color: #008080;">to</span> <span style="color: #000000;">10</span> <span style="color: #008080;">do</span>
end for</lang>
<span style="color: #7060A8;">printf</span><span style="color: #0000FF;">(</span><span style="color: #000000;">1</span><span style="color: #0000FF;">,</span><span style="color: #008000;">" %d"</span><span style="color: #0000FF;">,</span><span style="color: #000000;">call_closure</span><span style="color: #0000FF;">(</span><span style="color: #000000;">cids</span><span style="color: #0000FF;">[</span><span style="color: #000000;">i</span><span style="color: #0000FF;">],{}))</span>
<span style="color: #008080;">end</span> <span style="color: #008080;">for</span>
<!--</syntaxhighlight>-->
{{out}}
<pre>
Line 1,545 ⟶ 1,631:
 
A dictionary based approach may prove somewhat easier:
<!--<syntaxhighlight lang="phix">(phixonline)-->
<lang Phix>function square(integer tid)
<span style="color: #008080;">with</span> <span style="color: #008080;">javascript_semantics</span>
integer i = getd("i",tid) -- (setd valid here too)
<span style="color: #008080;">function</span> <span style="color: #000000;">square</span><span style="color: #0000FF;">(</span><span style="color: #004080;">integer</span> <span style="color: #000000;">tid</span><span style="color: #0000FF;">)</span>
return i*i
<span style="color: #004080;">integer</span> <span style="color: #000000;">i</span> <span style="color: #0000FF;">=</span> <span style="color: #7060A8;">getd</span><span style="color: #0000FF;">(</span><span style="color: #008000;">"i"</span><span style="color: #0000FF;">,</span><span style="color: #000000;">tid</span><span style="color: #0000FF;">)</span> <span style="color: #000080;font-style:italic;">-- (setd valid here too)</span>
end function
<span style="color: #008080;">return</span> <span style="color: #000000;">i</span><span style="color: #0000FF;">*</span><span style="color: #000000;">i</span>
 
<span style="color: #008080;">end</span> <span style="color: #008080;">function</span>
sequence tids = {}
for i=1 to 10 do
<span style="color: #004080;">sequence</span> <span style="color: #000000;">tids</span> <span style="color: #0000FF;">=</span> <span style="color: #0000FF;">{}</span>
--for i=11 to 20 do
<span style="color: #008080;">for</span> <span style="color: #000000;">i</span><span style="color: #0000FF;">=</span><span style="color: #000000;">1</span> <span style="color: #008080;">to</span> <span style="color: #000000;">10</span> <span style="color: #008080;">do</span>
tids &= new_dict({{"i",i}})
<span style="color: #000080;font-style:italic;">--for i=11 to 20 do</span>
end for
<span style="color: #000000;">tids</span> <span style="color: #0000FF;">&=</span> <span style="color: #7060A8;">new_dict</span><span style="color: #0000FF;">({{</span><span style="color: #008000;">"i"</span><span style="color: #0000FF;">,</span><span style="color: #000000;">i</span><span style="color: #0000FF;">}})</span>
for i=1 to 10 do
<span style="color: #008080;">end</span> <span style="color: #008080;">for</span>
printf(1," %d",square(tids[i]))
<span style="color: #008080;">for</span> <span style="color: #000000;">i</span><span style="color: #0000FF;">=</span><span style="color: #000000;">1</span> <span style="color: #008080;">to</span> <span style="color: #000000;">10</span> <span style="color: #008080;">do</span>
end for</lang>
<span style="color: #7060A8;">printf</span><span style="color: #0000FF;">(</span><span style="color: #000000;">1</span><span style="color: #0000FF;">,</span><span style="color: #008000;">" %d"</span><span style="color: #0000FF;">,</span><span style="color: #000000;">square</span><span style="color: #0000FF;">(</span><span style="color: #000000;">tids</span><span style="color: #0000FF;">[</span><span style="color: #000000;">i</span><span style="color: #0000FF;">]))</span>
<span style="color: #008080;">end</span> <span style="color: #008080;">for</span>
<!--</syntaxhighlight>-->
same output, for both tests
 
=={{header|Phixmonti}}==
<langsyntaxhighlight Phixmontilang="phixmonti">def power2
dup *
enddef
Line 1,577 ⟶ 1,665:
var i
i get i swap exec print " " print
endfor</langsyntaxhighlight>
 
=={{header|PHP}}==
{{works with|PHP|5.3+}}
<langsyntaxhighlight lang="php"><?php
$funcs = array();
for ($i = 0; $i < 10; $i++) {
Line 1,587 ⟶ 1,674:
}
echo $funcs[3](), "\n"; // prints 9
?></langsyntaxhighlight>
 
{{works with|PHP|pre-5.3}}
This method can capture value types like numbers, strings, arrays, etc., but not objects.
<langsyntaxhighlight lang="php"><?php
$funcs = array();
for ($i = 0; $i < 10; $i++) {
Line 1,597 ⟶ 1,684:
}
echo $funcs[3](), "\n"; // prints 9
?></langsyntaxhighlight>
 
=={{header|PicoLisp}}==
<langsyntaxhighlight lang="PicoLisp">(setq FunList
(make
(for @N 10
(link (curry (@N) () (* @N @N))) ) ) )</langsyntaxhighlight>
Test:
<pre>: ((get FunList 2))
Line 1,610 ⟶ 1,696:
: ((get FunList 8))
-> 64</pre>
 
=={{header|Pike}}==
<langsyntaxhighlight lang="Pike">array funcs = ({});
foreach(enumerate(10);; int i)
{
Line 1,624 ⟶ 1,709:
}(i)
});
}</langsyntaxhighlight>
 
=={{header|PowerShell}}==
I'm not sure that I understood the question/task. This task seems to be the same as the 'Accumulator Factory' task.
<langsyntaxhighlight lang="PowerShell">
function Get-Closure ([double]$Number)
{
{param([double]$Sum) return $script:Number *= $Sum}.GetNewClosure()
}
</syntaxhighlight>
</lang>
<langsyntaxhighlight lang="PowerShell">
for ($i = 1; $i -lt 11; $i++)
{
Line 1,644 ⟶ 1,728:
}
}
</syntaxhighlight>
</lang>
{{Out}}
<pre>
Line 1,660 ⟶ 1,744:
10 100
</pre>
<langsyntaxhighlight lang="PowerShell">
$numbers = 1..20 | Get-Random -Count 10
 
Line 1,672 ⟶ 1,756:
}
}
</syntaxhighlight>
</lang>
{{Out}}
<pre>
Line 1,688 ⟶ 1,772:
20 400
</pre>
 
=={{header|Prolog}}==
Works with SWI-Prolog and module '''lambda.pl''' from '''Ulrich Neumerkel'''. <br>
'''lambda.pl''' can be found there : http://www.complang.tuwien.ac.at/ulrich/Prolog-inedit/lambda.pl
 
<langsyntaxhighlight lang="Prolog">:-use_module(library(lambda)).
 
 
Line 1,707 ⟶ 1,790:
call(F, R),
format('Func ~w : ~w~n', [N, R]).
</syntaxhighlight>
</lang>
{{out}}
<pre> ?- closure.
Line 1,722 ⟶ 1,805:
true.
</pre>
 
=={{header|Python}}==
The naive way does not work:
<langsyntaxhighlight lang="python">funcs = []
for i in range(10):
funcs.append(lambda: i * i)
print funcs[3]() # prints 81</langsyntaxhighlight>
 
The simplest solution is to add optional parameters with default arguments at the end of the parameter list, to create a local copy of the variable, and evaluate the variable at the time the function is created. (The optional parameter is not expected to ever be passed.) Often, the optional parameter will be named the same as the variable to be closed over (leading to odd-looking code of the form <code>foo=foo</code> in the arguments), so that the code inside the function need not be changed, but this might lead to confusion. This technique does not work for functions with a variable number of arguments.
<langsyntaxhighlight lang="python">funcs = []
for i in range(10):
funcs.append(lambda i=i: i * i)
print funcs[3]() # prints 9</langsyntaxhighlight>
or equivalently the list comprehension:
<langsyntaxhighlight lang="python">funcs = [lambda i=i: i * i for i in range(10)]
print funcs[3]() # prints 9</langsyntaxhighlight>
 
Another solution is to wrap an immediately-executed function around our function. The wrapping function creates a new scope, and its execution forces the evaluation of the variable to be closed over.
<langsyntaxhighlight lang="python">funcs = []
for i in range(10):
funcs.append((lambda i: lambda: i * i)(i))
print funcs[3]() # prints 9</langsyntaxhighlight>
or equivalently the list comprehension:
<langsyntaxhighlight lang="python">funcs = [(lambda i: lambda: i)(i * i) for i in range(10)]
print funcs[3]() # prints 9</langsyntaxhighlight>
 
In this case it is also possible to use <code>map()</code> since the function passed to it creates a new scope
<langsyntaxhighlight lang="python">funcs = map(lambda i: lambda: i * i, range(10))
print funcs[3]() # prints 9</langsyntaxhighlight>
 
It is also possible to use <code>eval</code>.
<langsyntaxhighlight lang="python">funcs=[eval("lambda:%s"%i**2)for i in range(10)]
print funcs[3]() # prints 9</langsyntaxhighlight>
=={{header|Quackery}}==
 
Strictly speaking, we could get away with <code>[ table 0 1 4 9 16 25 36 49 64 81 ] is functions ( n --> n )</code> for this task, as numbers in Quackery are functions that return their own value when executed, e.g <code>5 do</code> returns <code>5</code>, but it feels like cheating.
 
<syntaxhighlight lang="Quackery"> [ table ] is functions ( n --> [ )
 
10 times
[ i^ ' [ dup * ] join
' functions put ]
 
5 functions do echo</syntaxhighlight>
 
{{out}}
 
<pre>25</pre>
=={{header|R}}==
 
Line 1,763 ⟶ 1,859:
what you expect.
 
<syntaxhighlight lang="R">
<lang R>
# assign 's' a list of ten functions
s <- sapply (1:10, # integers 1..10 become argument 'x' below
Line 1,773 ⟶ 1,869:
s[[5]]() # call the fifth function in the list of returned functions
[1] 25 # returns vector of length 1 with the value 25
</syntaxhighlight>
</lang>
 
Note that I bound the captured variable as the default argument on a unary function.
Line 1,779 ⟶ 1,875:
ignores the default argument.
 
<syntaxhighlight lang="R">
<lang R>
s[[5]](10)
[1] 100
</syntaxhighlight>
</lang>
 
As a further technicality, note that you need some extra voodoo to '''modify''' the bound argument
with persistence across calls. This example increments the bound variable after each call.
 
<syntaxhighlight lang="R">
<lang R>
s <- sapply (1:10,
function (x) {
Line 1,806 ⟶ 1,902:
s[[1]]()
[1] 4 # now 2^2
</syntaxhighlight>
</lang>
 
As shown, each instance increments separately.
Line 1,815 ⟶ 1,911:
I think that modifying the bound variable can be done in a simpler way.
Instead of:
<langsyntaxhighlight lang="R"> evalq (x <- x + 1, parent.env(environment()))</langsyntaxhighlight>
substitute:
<langsyntaxhighlight lang="R"> x <<- x + 1</langsyntaxhighlight>
Testing:
<pre>
Line 1,833 ⟶ 1,929:
[1] 16
</pre>
 
=={{header|Racket}}==
<langsyntaxhighlight lang="racket">
#lang racket
(define functions (for/list ([i 10]) (λ() (* i i))))
(map (λ(f) (f)) functions)
</syntaxhighlight>
</lang>
{{out}}
<langsyntaxhighlight lang="racket">
'(0 1 4 9 16 25 36 49 64 81)
</syntaxhighlight>
</lang>
 
=={{header|Raku}}==
(formerly Perl 6)
{{Works with|Rakudo|2015.12}}
All blocks are anonymous closures in Raku, and parameters are lexicals, so it's easy to generate a list of them. We'll use a <tt>gather</tt>/<tt>take</tt> generator loop, and call the closures in random order, just to keep things interesting.
<syntaxhighlight lang="raku" perl6line>my @c = gather for ^10 -> $i {
take { $i * $i }
}
 
.().say for @c.pick(*); # call them in random order</langsyntaxhighlight>
{{out}}
<pre>36
Line 1,866 ⟶ 1,960:
49</pre>
Or equivalently, using a more functional notation:
<syntaxhighlight lang="raku" perl6line>say .() for pick *, map -> $i { -> {$i * $i} }, ^10</langsyntaxhighlight>
 
=={{header|Red}}==
<langsyntaxhighlight lang="Red">
funs: collect [repeat i 10 [keep func [] reduce [i ** 2]]]
 
>> funs/7
== 49
</syntaxhighlight>
</lang>
 
=={{header|REXX}}==
This REXX version supports both a one─ and zero─based list &nbsp; (it can be specified at the command line.)
Line 1,884 ⟶ 1,976:
 
No error checking is performed on the user input(s).
<langsyntaxhighlight lang="rexx">/*REXX program has a list of ten functions, each returns its invocation (index) squared.*/
parse arg seed base $ /*obtain optional arguments from the CL*/
if datatype(seed, 'W') then call random ,,seed /*Not given? Use random start seed. */
Line 1,908 ⟶ 2,000:
.9: return .(9) /* ' .9 " " " " */
/*──────────────────────────────────────────────────────────────────────────────────────*/
.: arg #; _=wordpos(#,$); if _==0 then return 'not in the list.'; return (_-(\base))**2</langsyntaxhighlight>
{{out|output|text=&nbsp; when using the default input &nbsp; which assume a zero─based list):}}
<pre>
Line 1,919 ⟶ 2,011:
function .0 returned 100
</pre>
 
=={{header|Ring}}==
<langsyntaxhighlight lang="ring">
x = funcs(7)
see x + nl
Line 1,931 ⟶ 2,022:
next
return fn
</syntaxhighlight>
</lang>
Output:
<pre>
Line 1,942 ⟶ 2,033:
49
</pre>
 
=={{header|Ruby}}==
<langsyntaxhighlight lang="ruby">procs = Array.new(10){|i| ->{i*i} } # -> creates a lambda
p procs[7].call # => 49</langsyntaxhighlight>
 
In Ruby, lambdas (and procs) are closures.
 
=={{header|Rust}}==
One note here about referencing values and capturing values: <br>
Rust employs strong ownership rules that do not allow mutating a value that is referenced (pointed to without allowing mutation) from elsewhere. It also doesn't allow referencing a value that may be dropped before the reference is released. The proof that we really did capture the value is therefore unnecessary. Either we did or it wouldn't have compiled.
 
<langsyntaxhighlight lang="rust">fn main() {
let fs: Vec<_> = (0..10).map(|i| {move || i*i} ).collect();
println!("7th val: {}", fs[7]());
}</langsyntaxhighlight>
 
{{out}}
<pre>7th val: 49</pre>
 
=={{header|Scala}}==
<langsyntaxhighlight lang="scala">val closures=for(i <- 0 to 9) yield (()=>i*i)
0 to 8 foreach (i=> println(closures(i)()))
println("---\n"+closures(7)())</langsyntaxhighlight>
{{out}}
<pre>0
Line 1,977 ⟶ 2,065:
---
49</pre>
 
=={{header|Scheme}}==
 
<langsyntaxhighlight lang="scheme">;;; Collecting lambdas in a tail-recursive function.
(define (build-list-of-functions n i list)
(if (< i n)
Line 1,990 ⟶ 2,077:
(map (lambda (f) (f)) list-of-functions)
 
((list-ref list-of-functions 8))</langsyntaxhighlight>
 
{{out}}
<langsyntaxhighlight lang="scheme">'(1 4 9 16 25 36 49 64 81)
81</langsyntaxhighlight>
 
----
 
Using Scheme [http://srfi.schemers.org/srfi-1/srfi-1.html SRFI 1] ''iota'' procedure can be simplified to:
<langsyntaxhighlight lang="scheme">
(define list-of-functions (map (lambda (x) (lambda () (* x x))) (iota 0 1 10)))
 
Line 2,006 ⟶ 2,093:
(map (lambda (n) (n)) list-of-functions)
(newline)
</syntaxhighlight>
</lang>
 
=={{header|Sidef}}==
<langsyntaxhighlight lang="ruby">var f = (
10.of {|i| func(j){i * j} }
)
Line 2,015 ⟶ 2,101:
9.times { |j|
say f[j](j)
}</langsyntaxhighlight>
{{out}}
<pre>
Line 2,030 ⟶ 2,116:
 
Starting from i=1:
<langsyntaxhighlight lang="ruby">var f = (1..10).map { |i|
func(j){i * j}
}
Line 2,036 ⟶ 2,122:
for j (1..9) {
say f[j-1](j)
}</langsyntaxhighlight>
{{out}}
<pre>
Line 2,049 ⟶ 2,135:
81
</pre>
 
=={{header|Smalltalk}}==
<langsyntaxhighlight lang="smalltalk">funcs := (1 to: 10) collect: [ :i | [ i * i ] ] .
(funcs at: 3) value displayNl .</langsyntaxhighlight>
{{out}}
<pre>9</pre>
 
=={{header|Sparkling}}==
In Sparkling, upvalues (variables in the closure) are captured by value.
 
<langsyntaxhighlight lang="sparkling">var fnlist = {};
for var i = 0; i < 10; i++ {
fnlist[i] = function() {
Line 2,067 ⟶ 2,151:
 
print(fnlist[3]()); // prints 9
print(fnlist[5]()); // prints 25</langsyntaxhighlight>
 
Alternately:
 
<langsyntaxhighlight lang="sparkling">var fnlist = map(range(10), function(k, v) {
return function() {
return v * v;
Line 2,078 ⟶ 2,162:
 
print(fnlist[3]()); // prints 9
print(fnlist[5]()); // prints 25</langsyntaxhighlight>
 
=={{header|Standard ML}}==
<langsyntaxhighlight lang="Standard ML">
List.map (fn x => x () ) ( List.tabulate (10,(fn i => (fn ()=> i*i)) ) ) ;
</langsyntaxhighlight> Output:
<langsyntaxhighlight lang="Standard ML">
val it = [0,1,4,9,16,25,36,49,64,81] : int list
</syntaxhighlight>
</lang>
 
=={{header|Swift}}==
By default, Swift captures variables by reference. A naive implementation like the following C-style for loop does not work:
<langsyntaxhighlight lang="swift">var funcs: [() -> Int] = []
for var i = 0; i < 10; i++ {
funcs.append({ i * i })
}
println(funcs[3]()) // prints 100</langsyntaxhighlight>
 
However, using a for-in loop over a range does work, since you get a new constant at every iteration:
<langsyntaxhighlight lang="swift">var funcs: [() -> Int] = []
for i in 0..<10 {
funcs.append({ i * i })
}
println(funcs[3]()) // prints 9</langsyntaxhighlight>
 
The C-style for loop can also work if we explicitly capture the loop counter:
<langsyntaxhighlight lang="swift">var funcs: [() -> Int] = []
for var i = 0; i < 10; i++ {
funcs.append({ [i] in i * i })
}
println(funcs[3]()) // prints 9</langsyntaxhighlight>
 
Alternately, we can also use <code>map()</code> to map over a range, and create the squaring closure inside the mapping closure which has the integer as a parameter:
<langsyntaxhighlight lang="swift">let funcs = [] + map(0..<10) {i in { i * i }}
println(funcs[3]()) // prints 9</langsyntaxhighlight>
 
=={{header|Tcl}}==
Tcl does not support closures (either value-capturing or variable-capturing) by default, but value-capturing closures are easy to emulate.
<langsyntaxhighlight lang="tcl">package require Tcl 8.6; # Just for tailcall command
# Builds a value-capturing closure; does NOT couple variables
proc closure {script} {
Line 2,151 ⟶ 2,232:
set idx [expr {int(rand()*9)}]; # pick random int from [0..9)
puts $idx=>[{*}[lindex $theClosures $idx]]
}</langsyntaxhighlight>
{{out}}
<pre>
Line 2,160 ⟶ 2,241:
8=>64
</pre>
 
=={{header|TXR}}==
 
====Sugared====
 
<langsyntaxhighlight lang="txrlisp">(let ((funs (mapcar (ret (op * @@1 @@1)) (range 1 10))))
[mapcar call [funs 0..-1]])</langsyntaxhighlight>
 
{{out}}
 
<langsyntaxhighlight lang="txrlisp">(1 4 9 16 25 36 49 64 81)</langsyntaxhighlight>
 
====Desugared====
Line 2,178 ⟶ 2,258:
The explicit <code>lambda</code> structure here is much like the implicit ones in the "Sugared" example:
 
<langsyntaxhighlight lang="txrlisp">;; Dropping distracting "skip last" requirement
;; (not implemented in original Elisp either).
(mapcar 'call
(mapcar (lambda ()
(lambda () (* x x))) '(1 2 3 4 5 6 7 8 9 10)))</langsyntaxhighlight>
 
====Delimited Continuations====
Line 2,220 ⟶ 2,300:
 
Whenever we call a continuation, the <code>(block sqr ...)</code> environment is restored. and the suspended computation inside the block resumes by returning out of the <code>(suspend ...)</code> form normally. The block then executes to completion, returning the <code>(* cap cap)</code> form's value. At that point, our call to the continuation terminates, yielding that value.
 
=={{header|Wren}}==
<langsyntaxhighlight ecmascriptlang="wren">var fs = List.filled(10, null)
for (i in 0...fs.count) {
fs[i] = Fn.new { i * i }
}
 
for (i in 0...fs.count-1) System.print("Function #%(i): %(fs[i].call())")</langsyntaxhighlight>
 
{{out}}
Line 2,243 ⟶ 2,322:
 
=={{header|Yabasic}}==
<langsyntaxhighlight lang="Yabasic">
dim funcs$(10)
 
Line 2,257 ⟶ 2,336:
print execute(funcs$(i), i)
next
</syntaxhighlight>
</lang>
 
=={{header|zkl}}==
Create a closure of the index over a square function
<langsyntaxhighlight lang="zkl">(0).pump(10,List,fcn(i){i*i}.fp)[8]() //-->64
list:=(0).pump(10,List,fcn(i){i*i}.fp);
foreach n in (list.len()-1) { list[n]().println() }
list.run(True).println()</langsyntaxhighlight>
{{out}}
<pre>
Line 2,278 ⟶ 2,356:
L(0,1,4,9,16,25,36,49,64,81)
</pre>
 
{{omit from|BASIC}}
{{omit from|Brlcad}}
Line 2,285 ⟶ 2,362:
{{omit from|PureBasic}}
{{omit from|ZX Spectrum Basic}}
 
[[Category:Functions and subroutines]]
6,951

edits