Mostly just a place-holder so lambda-symbol form has somewhere safe to hang its help entry.

lambda(..., env = parent.frame())

Arguments

...

formal parameters of function, unbound names, followed by function body (code/language).

env

environment to work in

Value

user defined function.

See also

Examples

#lambda-syntax: lambda(arg [, arg]*, body [, env=env]) # also works with lambda character as function name # print(intToUtf8(0x03BB)) # example: square numbers sapply(1:4, lambda(x, x^2))
#> [1] 1 4 9 16
# example more than one argument f <- lambda(x, y, x+y) f(2,4)
#> [1] 6