function


Synopsis

(function <lambda-definition>) [Special Function or workaround]

Description

missing

Note

The name lambda-list is misleading. The lambda-list normally specifies the argument list ona function. So we use the term "lambda-definition" or unnamed function definition in comparison to defun which creates a named function definition.

Example

(function (lambda (..) ...))  => ...

Arguments

lambda-definition: an unnamed function definition or so called "lambda-definition"

Return Value

The appropriate definition of an functional object. Either of type LIST or USUBR.

Side Effects

hmm...

Module

Defined in STDLISP or in the Lisp system as native function.