Node: Special Forms and Functions, Next: , Previous: Streams and Reading, Up: Top



Special Forms and Functions

LAMBDA-LIST-KEYWORDS Constant
Package:LISP List of all the lambda-list keywords used in GCL.

GET-SETF-METHOD (form) Function
Package:LISP

Returns the five values (or five 'gangs') constituting the SETF method for FORM. See the doc of DEFINE-SETF-METHOD for the meanings of the gangs. It is an error if the third value (i.e., the list of store variables) is not a one-element list. See the doc of GET-SETF-METHOD-MULTIPLE-VALUE for comparison.

THE Special Form
Package:LISP

Syntax:

          (the value-type form)
          

Declares that the value of FORM must be of VALUE-TYPE. Signals an error if this is not the case.

SETF Special Form
Package:LISP

Syntax:

          (setf {place newvalue}*)
          

Replaces the value in PLACE with the value of NEWVALUE, from left to right. Returns the value of the last NEWVALUE. Each PLACE may be any one of the following:

  • A symbol that names a variable.
  • A function call form whose first element is the name of the following functions:
                   nth	elt	subseq	rest	first ... tenth
                   c?r	c??r	c???r	c????r
                   aref	svref	char	schar	bit	sbit	fill-poiter
                   get	getf	documentation	symbol-value	symbol-function
                   symbol-plist	macro-function	gethash
                   char-bit	ldb	mask-field
                   apply
                   
    where '?' stands for either 'a' or 'd'.
  • the form (THE type place) with PLACE being a place recognized by SETF.
  • a macro call which expands to a place recognized by SETF.
  • any form for which a DEFSETF or DEFINE-SETF-METHOD declaration has been made.

WHEN Special Form
Package:LISP

Syntax:

          (when test {form}*)
          

If TEST evaluates to non-NIL, then evaluates FORMs as a PROGN. If not, simply returns NIL.

CCASE Macro
Package:LISP

Syntax:

          (ccase keyplace {({key | ({key}*)} {form}*)}*)
          

Evaluates KEYPLACE and tries to find the KEY that is EQL to the value of KEYPLACE. If one is found, then evaluates FORMs that follow the KEY and returns the value(s) of the last FORM. If not, signals a correctable error.

MACROEXPAND (form &optional (env nil)) Function
Package:LISP

If FORM is a macro form, then expands it repeatedly until it is not a macro any more. Returns two values: the expanded form and a T-or-NIL flag indicating whether the original form was a macro.

MULTIPLE-VALUE-CALL Special Form
Package:LISP

Syntax:

          (multiple-value-call function {form}*)
          

Calls FUNCTION with all the values of FORMs as arguments.

DEFSETF Macro
Package:LISP

Syntax:

          (defsetf access-fun {update-fun [doc] |
                                       lambda-list (store-var) {decl | doc}*
          {form}*)
          

Defines how to SETF a generalized-variable reference of the form (ACCESS-FUN ...). The doc-string DOC, if supplied, is saved as a SETF doc and can be retrieved by (documentation 'NAME 'setf).

          (defsetf access-fun update-fun) defines an expansion from
          (setf (ACCESS-FUN arg1 ... argn) value) to (UPDATE-FUN arg1 ... argn value).
          
          (defsetf access-fun lambda-list (store-var) . body) defines a macro which
          
expands
          (setf (ACCESS-FUN arg1 ... argn) value) into the form
          	(let* ((temp1 ARG1) ... (tempn ARGn) (temp0 value)) rest)
          
where REST is the value of BODY with parameters in LAMBDA-LIST bound to the symbols TEMP1 ... TEMPn and with STORE-VAR bound to the symbol TEMP0.

TAGBODY Special Form
Package:LISP

Syntax:

          (tagbody {tag | statement}*)
          

Executes STATEMENTs and returns NIL if it falls off the end.

ETYPECASE Macro
Package:LISP

Syntax:

          (etypecase keyform {(type {form}*)}*)
          

Evaluates KEYFORM and tries to find the TYPE in which the value of KEYFORM belongs. If one is found, then evaluates FORMs that follow the KEY and returns the value(s) of the last FORM. If not, signals an error.

LET* Special Form
Package:LISP

Syntax:

          (let* ({var | (var [value])}*) {decl}* {form}*)
          

Initializes VARs, binding them to the values of VALUEs (which defaults to NIL) from left to right, then evaluates FORMs as a PROGN.

PROG1 Special Form
Package:LISP

Syntax:

          (prog1 first {form}*)
          

Evaluates FIRST and FORMs in order, and returns the (single) value of FIRST.

DEFUN Special Form
Package:LISP

Syntax:

          (defun name lambda-list {decl | doc}* {form}*)
          

Defines a function as the global function definition of the symbol NAME. The complete syntax of a lambda-list is: ({var}* [&optional {var | (var [initform [svar]])}*] [&rest var] [&key {var | ({var | (keyword var)} [initform [svar]])}* [&allow-other-keys]] [&aux {var | (var [initform])}*]) The doc-string DOC, if supplied, is saved as a FUNCTION doc and can be retrieved by (documentation 'NAME 'function).

MULTIPLE-VALUE-BIND Special Form
Package:LISP

Syntax:

          (multiple-value-bind ({var}*) values-form {decl}* {form}*)
          

Binds the VARiables to the results of VALUES-FORM, in order (defaulting to NIL) and evaluates FORMs in order.

DECLARE Special Form
Package:LISP

Syntax:

          (declare {decl-spec}*)
          

Gives a declaration. Possible DECL-SPECs are: (SPECIAL {var}*) (TYPE type {var}*) where 'TYPE' is one of the following symbols

          array		fixnum		package		simple-bit-vector
          atom		float		pathname	simple-string
          bignum		function	random-state	simple-vector
          bit		hash-table	ratio		single-float
          bit-vector	integer		rational	standard-char
          character	keyword		readtable	stream
          common		list		sequence	string
          compiled-function  long-float	short-float	string-char
          complex		nil		signed-byte	symbol
          cons		null		unsigned-byte	t
          double-float	number		simple-array	vector
          
'TYPE' may also be a list containing one of the above symbols as its first element and more specific information later in the list. For example
          (vector long-float 80) ; vector of 80 long-floats.
          (array long-float *)   ; array of long-floats
          (array fixnum)         ; array of fixnums
          (array * 30)           ; an array of length 30 but unspecified type
          

A list of 1 element may be replaced by the symbol alone, and a list ending in '*' may drop the the final '*'.

          (OBJECT {var}*)
          (FTYPE type {function-name}*)
              eg: ;; function of two required args and optional args and one value:
               (ftype (function (t t *) t) sort reduce)
                  ;; function with 1 arg of general type returning 1 fixnum as value.
               (ftype (function (t) fixnum) length)
          (FUNCTION function-name ({arg-type}*) {return-type}*)
          (INLINE {function-name}*)
          (NOTINLINE {function-name}*)
          (IGNORE {var}*)
          (OPTIMIZE {({SPEED | SPACE | SAFETY | COMPILATION-SPEED} {0 | 1 | 2 | 3})}*)
          (DECLARATION {non-standard-decl-name}*)
          (:DYNAMIC-EXTENT {var}*) ;GCL-specific.
          

DEFMACRO Special Form
Package:LISP

Syntax:

          (defmacro name defmacro-lambda-list {decl | doc}* {form}*)
          

Defines a macro as the global macro definition of the symbol NAME. The complete syntax of a defmacro-lambda-list is:

( [&whole var] [&environment var] {pseudo-var}* [&optional {var | (pseudo-var [initform [pseudo-var]])}*] {[{&rest | &body} pseudo-var] [&key {var | ({var | (keyword pseudo-var)} [initform [pseudo-var]])}* [&allow-other-keys]] [&aux {var | (pseudo-var [initform])}*] | . var})

where pseudo-var is either a symbol or a list of the following form:

( {pseudo-var}* [&optional {var | (pseudo-var [initform [pseudo-var]])}*] {[{&rest | &body} pseudo-var] [&key {var | ({var | (keyword pseudo-var)} [initform [pseudo-var]])}* [ &allow-other-keys ] ] [&aux {var | (pseudo-var [initform])}*] | . var})

As a special case, a non-NIL symbol is accepcted as a defmacro-lambda-list: (DEFMACRO <name> <symbol> ...) is equivalent to (DEFMACRO <name> (&REST <symbol>) ...). The doc-string DOC, if supplied, is saved as a FUNCTION doc and can be retrieved by (documentation 'NAME 'function). See the type doc of LIST for the backquote macro useful for defining macros. Also, see the function doc of PPRINT for the output-formatting.

*EVALHOOK* Variable
Package:LISP If *EVALHOOK* is not NIL, its value must be a function that can receive two arguments: a form to evaluate and an environment. This function does the evaluation instead of EVAL.

FUNCTIONP (x) Function
Package:LISP

Returns T if X is a function, suitable for use by FUNCALL or APPLY. Returns NIL otherwise.

LAMBDA-PARAMETERS-LIMIT Constant
Package:LISP The exclusive upper bound on the number of distinct parameter names that may appear in a single lambda-list. Actually, however, there is no such upper bound in GCL.

FLET Special Form
Package:LISP

Syntax:

          (flet ({(name lambda-list {decl | doc}* {form}*)}*) . body)
          

Evaluates BODY as a PROGN, with local function definitions in effect. BODY is the scope of each local function definition. Since the scope does not include the function definitions themselves, the local function can reference externally defined functions of the same name. See the doc of DEFUN for the complete syntax of a lambda-list. Doc-strings for local functions are simply ignored.

ECASE Macro
Package:LISP

Syntax:

          (ecase keyform {({key | ({key}*)} {form}*)}*)
          

Evaluates KEYFORM and tries to find the KEY that is EQL to the value of KEYFORM. If one is found, then evaluates FORMs that follow the KEY and returns the value(s) of the last FORM. If not, signals an error.

PROG2 Special Form
Package:LISP

Syntax:

          (prog2 first second {forms}*)
          

Evaluates FIRST, SECOND, and FORMs in order, and returns the (single) value of SECOND.

PROGV Special Form
Package:LISP

Syntax:

          (progv symbols values {form}*)
          

SYMBOLS must evaluate to a list of variables. VALUES must evaluate to a list of initial values. Evaluates FORMs as a PROGN, with each variable bound (as special) to the corresponding value.

QUOTE Special Form
Package:LISP

Syntax:

          (quote x)
          
or 'x Simply returns X without evaluating it.

DOTIMES Special Form
Package:LISP

Syntax:

          (dotimes (var countform [result]) {decl}* {tag | statement}*)
          

Executes STATEMENTs, with VAR bound to each number between 0 (inclusive) and the value of COUNTFORM (exclusive). Then returns the value(s) of RESULT (which defaults to NIL).

SPECIAL-FORM-P (symbol) Function
Package:LISP

Returns T if SYMBOL globally names a special form; NIL otherwise. The special forms defined in Steele's manual are:

          block		if			progv
          catch		labels			quote
          compiler-let	let			return-from
          declare		let*			setq
          eval-when	macrolet		tagbody
          flet		multiple-value-call	the
          function	multiple-value-prog1	throw
          go		progn			unwind-protect
          

In addition, GCL implements the following macros as special forms, though of course macro-expanding functions such as MACROEXPAND work correctly for these macros.

          and		incf			prog1
          case		locally			prog2
          cond		loop			psetq
          decf		multiple-value-bind	push
          defmacro	multiple-value-list	return
          defun		multiple-value-set	setf
          do		or			unless
          do*		pop			when
          dolist		prog
          dotimes		prog*
          

FUNCTION Special Form
Package:LISP

Syntax:

          (function x)
          
or #'x If X is a lambda expression, creates and returns a lexical closure of X in the current lexical environment. If X is a symbol that names a function, returns that function.

MULTIPLE-VALUES-LIMIT Constant
Package:LISP The exclusive upper bound on the number of values that may be returned from a function. Actually, however, there is no such upper bound in GCL.

APPLYHOOK (function args evalhookfn applyhookfn &optional (env nil)) Function
Package:LISP

Applies FUNCTION to ARGS, with *EVALHOOK* bound to EVALHOOKFN and with *APPLYHOOK* bound to APPLYHOOKFN. Ignores the hook function once, for the top-level application of FUNCTION to ARGS.

*MACROEXPAND-HOOK* Variable
Package:LISP Holds a function that can take two arguments (a macro expansion function and the macro form to be expanded) and returns the expanded form. This function is whenever a macro-expansion takes place. Initially this is set to #'FUNCALL.

PROG* Special Form
Package:LISP

Syntax:

          (prog* ({var | (var [init])}*) {decl}* {tag | statement}*)
          

Creates a NIL block, binds VARs sequentially, and then executes STATEMENTs.

BLOCK Special Form
Package:LISP

Syntax:

          (block name {form}*)
          

The FORMs are evaluated in order, but it is possible to exit the block using (RETURN-FROM name value). The RETURN-FROM must be lexically contained within the block.

PROGN Special Form
Package:LISP

Syntax:

          (progn {form}*)
          

Evaluates FORMs in order, and returns whatever the last FORM returns.

APPLY (function arg &rest more-args) Function
Package:LISP

Applies FUNCTION. The arguments to the function consist of all ARGs except for the last, and all elements of the last ARG.

LABELS Special Form
Package:LISP

Syntax:

          (labels ({(name lambda-list {decl | doc}* {form}*)}*) . body)
          

Evaluates BODY as a PROGN, with the local function definitions in effect. The scope of the locally defined functions include the function definitions themselves, so their definitions may include recursive references. See the doc of DEFUN for the complete syntax of a lambda-list. Doc-strings for local functions are simply ignored.

RETURN Special Form
Package:LISP

Syntax:

          (return [result])
          

Returns from the lexically surrounding NIL block. The value of RESULT, which defaults to NIL, is returned as the value of the block.

TYPECASE Macro
Package:LISP

Syntax:

          (typecase keyform {(type {form}*)}*)
          

Evaluates KEYFORM and tries to find the TYPE in which the value of KEYFORM belongs. If one is found, then evaluates FORMs that follow the KEY and returns the value of the last FORM. If not, simply returns NIL.

AND Special Form
Package:LISP

Syntax:

          (and {form}*)
          

Evaluates FORMs in order from left to right. If any FORM evaluates to NIL, returns immediately with the value NIL. Else, returns the value(s) of the last FORM.

LET Special Form
Package:LISP

Syntax:

          (let ({var | (var [value])}*) {decl}* {form}*)
          

Initializes VARs, binding them to the values of VALUEs (which defaults to NIL) all at once, then evaluates FORMs as a PROGN.

COND Special Form
Package:LISP

Syntax:

          (cond {(test {form}*)}*)
          
Evaluates each TEST in order until one evaluates to a non-NIL value. Then evaluates the associated FORMs in order and returns the value(s) of the last FORM. If no forms follow the TEST, then returns the value of the TEST. Returns NIL, if all TESTs evaluate to NIL.

GET-SETF-METHOD-MULTIPLE-VALUE (form) Function
Package:LISP Returns the five values (or five 'gangs') constituting the SETF method for FORM. See the doc of DEFINE-SETF-METHOD for the meanings of the gangs. The third value (i.e., the list of store variables) may consist of any number of elements. See the doc of GET-SETF-METHOD for comparison.

CATCH Special Form
Package:LISP

Syntax:

          (catch tag {form}*)
          

Sets up a catcher with that value TAG. Then evaluates FORMs as a PROGN, but may possibly abort the evaluation by a THROW form that specifies the value EQ to the catcher tag.

DEFINE-MODIFY-MACRO Macro
Package:LISP

Syntax:

          (define-modify-macro name lambda-list fun [doc])
          

Defines a read-modify-write macro, like PUSH and INCF. The defined macro will expand a form (NAME place val1 ... valn) into a form that in effect SETFs the value of the call (FUN PLACE arg1 ... argm) into PLACE, where arg1 ... argm are parameters in LAMBDA-LIST which are bound to the forms VAL1 ... VALn. The doc-string DOC, if supplied, is saved as a FUNCTION doc and can be retrieved by (documentation 'NAME 'function).

MACROEXPAND-1 (form &optional (env nil)) Function
Package:LISP

If FORM is a macro form, then expands it once. Returns two values: the expanded form and a T-or-NIL flag indicating whether the original form was a macro.

FUNCALL (function &rest arguments) Function
Package:LISP

Applies FUNCTION to the ARGUMENTs

CALL-ARGUMENTS-LIMIT Constant
Package:LISP The upper exclusive bound on the number of arguments that may be passed to a function. Actually, however, there is no such upper bound in GCL.

CASE Special Form
Package:LISP

Syntax:

          (case keyform {({key | ({key}*)} {form}*)}*)
          

Evaluates KEYFORM and tries to find the KEY that is EQL to the value of KEYFORM. If one is found, then evaluates FORMs that follow the KEY and returns the value(s) of the last FORM. If not, simply returns NIL.

DEFINE-SETF-METHOD Macro
Package:LISP

Syntax:

          (define-setf-method access-fun defmacro-lambda-list {decl | doc}*
                    {form}*)
          

Defines how to SETF a generalized-variable reference of the form (ACCESS-FUN ...). When a form (setf (ACCESS-FUN arg1 ... argn) value) is being evaluated, the FORMs are first evaluated as a PROGN with the parameters in DEFMACRO-LAMBDA-LIST bound to ARG1 ... ARGn. Assuming that the last FORM returns five values (temp-var-1 ... temp-var-k) (value-from-1 ... value-form-k) (store-var) storing-form access-form in order, the whole SETF is then expanded into (let* ((temp-var-1 value-from-1) ... (temp-k value-form-k) (store-var VALUE)) storing-from) Incidentally, the five values are called the five gangs of a SETF method. The doc-string DOC, if supplied, is saved as a SETF doc and can be retrieved by (documentation 'NAME 'setf).

COMPILER-LET Special Form
Package:LISP

Syntax:

          (compiler-let ({var | (var [value])}*) {form}*)
          

When interpreted, this form works just like a LET form with all VARs declared special. When compiled, FORMs are processed with the VARs bound at compile time, but no bindings occur when the compiled code is executed.

VALUES (&rest args) Function
Package:LISP

Returns ARGs in order, as values.

MULTIPLE-VALUE-LIST Special Form
Package:LISP

Syntax:

          (multiple-value-list form)
          

Evaluates FORM, and returns a list of multiple values it returned.

MULTIPLE-VALUE-PROG1 Special Form
Package:LISP

Syntax:

          (multiple-value-prog1 form {form}*)
          

Evaluates the first FORM, saves all the values produced, then evaluates the other FORMs. Returns the saved values.

MACROLET Special Form
Package:LISP

Syntax:

          (macrolet ({(name defmacro-lambda-list {decl | doc}* . body)}*)
                    {form}*)
          

Evaluates FORMs as a PROGN, with the local macro definitions in effect. See the doc of DEFMACRO for the complete syntax of a defmacro-lambda-list. Doc-strings for local macros are simply ignored.

GO Special Form
Package:LISP

Syntax:

          (go tag)
          

Jumps to the specified TAG established by a lexically surrounding TAGBODY.

PROG Special Form
Package:LISP

Syntax:

          (prog ({var | (var [init])}*) {decl}* {tag | statement}*)
          

Creates a NIL block, binds VARs in parallel, and then executes STATEMENTs.

*APPLYHOOK* Variable
Package:LISP Used to substitute another function for the implicit APPLY normally done within EVAL. If *APPLYHOOK* is not NIL, its value must be a function which takes three arguments: a function to be applied, a list of arguments, and an environment. This function does the application instead of APPLY.

RETURN-FROM Special Form
Package:LISP

Syntax:

          (return-from name [result])
          

Returns from the lexically surrounding block whose name is NAME. The value of RESULT, which defaults to NIL, is returned as the value of the block.

UNLESS Special Form
Package:LISP

Syntax:

          (unless test {form}*)
          

If TEST evaluates to NIL, then evaluates FORMs as a PROGN. If not, simply returns NIL.

MULTIPLE-VALUE-SETQ Special Form
Package:LISP

Syntax:

          (multiple-value-setq variables form)
          

Sets each variable in the list VARIABLES to the corresponding value of FORM. Returns the value assigned to the first variable.

LOCALLY Special Form
Package:LISP

Syntax:

          (locally {decl}* {form}*)
          

Gives local pervasive declarations.

IDENTITY (x) Function
Package:LISP

Simply returns X.

NOT (x) Function
Package:LISP

Returns T if X is NIL; NIL otherwise.

DEFCONSTANT Macro
Package:LISP

Syntax:

          (defconstant name initial-value [doc])
          

Declares that the variable NAME is a constant whose value is the value of INITIAL-VALUE. The doc-string DOC, if supplied, is saved as a VARIABLE doc and can be retrieved by (documentation 'NAME 'variable).

VALUES-LIST (list) Function
Package:LISP

Returns all of the elements of LIST in order, as values.

ERROR (control-string &rest args) Function
Package:LISP

Signals a fatal error.

IF Special Form
Package:LISP

Syntax:

          (if test then [else])
          

If TEST evaluates to non-NIL, then evaluates THEN and returns the result. If not, evaluates ELSE (which defaults to NIL) and returns the result.

UNWIND-PROTECT Special Form
Package:LISP

Syntax:

          (unwind-protect protected-form {cleanup-form}*)
          

Evaluates PROTECTED-FORM and returns whatever it returned. Guarantees that CLEANUP-FORMs be always evaluated before exiting from the UNWIND-PROTECT form.

EVALHOOK (form evalhookfn applyhookfn &optional (env nil)) Function
Package:LISP

Evaluates FORM with *EVALHOOK* bound to EVALHOOKFN and *APPLYHOOK* bound to APPLYHOOKFN. Ignores these hooks once, for the top-level evaluation of FORM.

OR Special Form
Package:LISP

Syntax:

          (or {form}*)
          

Evaluates FORMs in order from left to right. If any FORM evaluates to non-NIL, quits and returns that (single) value. If the last FORM is reached, returns whatever values it returns.

CTYPECASE Macro
Package:LISP

Syntax:

          (ctypecase keyplace {(type {form}*)}*)
          

Evaluates KEYPLACE and tries to find the TYPE in which the value of KEYPLACE belongs. If one is found, then evaluates FORMs that follow the KEY and returns the value(s) of the last FORM. If not, signals a correctable error.

EVAL (exp) Function
Package:LISP

Evaluates EXP and returns the result(s).

PSETF Macro
Package:LISP

Syntax:

          (psetf {place newvalue}*)
          

Similar to SETF, but evaluates all NEWVALUEs first, and then replaces the value in each PLACE with the value of the corresponding NEWVALUE. Returns NIL always.

THROW Special Form
Package:LISP

Syntax:

          (throw tag result)
          

Evaluates TAG and aborts the execution of the most recent CATCH form that sets up a catcher with the same tag value. The CATCH form returns whatever RESULT returned.

DEFPARAMETER Macro
Package:LISP

Syntax:

          (defparameter name initial-value [doc])
          

Declares the variable NAME as a special variable and initializes the value. The doc-string DOC, if supplied, is saved as a VARIABLE doc and can be retrieved by (documentation 'NAME 'variable).

DEFVAR Macro
Package:LISP

Syntax:

          (defvar name [initial-value [doc]])
          

Declares the variable NAME as a special variable and, optionally, initializes it. The doc-string DOC, if supplied, is saved as a VARIABLE doc and can be retrieved by (documentation 'NAME 'variable).