[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Coerces X to an object of the type TYPE.
Returns the type of X.
Returns T if the variable named by SYMBOL is a constant; NIL otherwise.
Returns T if X is of the type TYPE; NIL otherwise.
Returns T if X is a Common Lisp object; NIL otherwise.
Returns T if TYPE1 is a subtype of TYPE2; NIL otherwise. If it could not determine, then returns NIL as the second value. Otherwise, the second value is T.
Syntax:
(check-type place typespec [string]) |
Signals an error, if the contents of PLACE are not of the specified type.
Syntax:
(assert test-form [({place}*) [string {arg}*]]) |
Signals an error if the value of TEST-FORM is NIL. STRING is an format string used as the error message. ARGs are arguments to the format string.
Syntax:
(deftype name lambda-list {decl | doc}* {form}*) |
Defines a new type-specifier abbreviation in terms of an 'expansion' function (lambda lambda-list1 {decl}* {form}*) where lambda-list1 is identical to LAMBDA-LIST except that all optional parameters with no default value specified in LAMBDA-LIST defaults to the symbol '*', but not to NIL. When the type system of GCL encounters a type specifier (NAME arg1 ... argn), it calls the expansion function with the arguments arg1 ... argn, and uses the returned value instead of the original type specifier. When the symbol NAME is used as a type specifier, the expansion function is called with no argument. The doc-string DOC, if supplied, is saved as the TYPE doc of NAME, and is retrieved by (documentation 'NAME 'type).
[ << ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |