blob: 913115a8a32b0c3e64e942d0e14b7dc13c880e3f [file] [log] [blame]
SYNOPSIS
closure lambda(mixed *arr, mixed)
DESCRIPTION
Constructs a lambda closure, like lambda function in LISP.
The closure is bound to the creating object, and thus can contain
references to global variables.
The first argument is an array describing the arguments
(symbols) passed to the closure upon evaluation by funcall()
or apply().
HISTORY
Introduced in 3.2@70.
SEE ALSO
closures(LPC), unbound_lambda(E), apply(E), funcall(E),
bind_lambda(E)