ctype
2025-06-22
An implementation of the Common Lisp type system.
This system is an implementation of the Common Lisp type system; particularly cl:typep and cl:subtypep.
The function specifier-ctype takes a type specifier and environment as input, and returns a "ctype": a reified representation of a type, independent of any environment. Ctypes are a precise reflection of their input specifier, i.e. information independent of the environment is not lost. They are however simplified as much as possible, so they will not reflect redundant information in the specifier. For example, (and list cons) and cons are interpreted as the same ctype.
The ctypep and subctypep functions implement cl:typep and cl:subtypep, except that they take ctype objects as arguments, rather than type specifiers. Then the CL functions could be defined as
(defun typep (object type-specifier &optional environment) (ctypep object (specifier-ctype type-specifier environment))) (defun subtypep (type-specifier-1 type-specifier-2 &optional environment) (subctypep (specifier-ctype type-specifier-1 environment) (specifier-ctype type-specifier-2 environment)))
The functions negate, disjoin, and conjoin can be used to compute functions of ctypes. They are analogous to the compound type specifiers not, or, and and respectively.
The functions top and bot return the top ctype and bottom ctype (t and nil), respectively. top-p and bot-p determine whether a given ctype is the top or the bottom ctype, respectively.
Configuration
This system is intended for use in an implementation of typep and subtypep, and so does not use cl:typep or cl:subtypep at all. Unfortunately, not all aspects of the type system on a given Lisp system are determinable with standard means without using typep and subtypep, and must be manually configured per implementation. See config/ for more information.
Currently, the following Lisps are supported:
- ABCL (preliminary)
- CCL
- Clasp
- CMUCL
- ECL
- SBCL
- SICL
Classes
Ctypes are of class ctype. Various subclasses of ctype implement kinds of types in the CL type system. The following subclasses are defined by the system:
cclass: a ctype representing a class. The class may be read with thecclass-classfunction.negation: The negation of itsnegation-ctype.conjunction/disjunction: Represents uses of theand/or(resp.) type specifier that could not be further simplified.junction-ctypesreturns a list of the ctypes it is a con/disjunction of.ccons: A cons type.ccons-carandccons-cdrread thecarandcdrtypes respectively.range: A range of real numbers.range-kindis one ofinteger,ratio,short-float,single-float,double-float, orlong-float.range-low,range-low-exclusive-p,range-high, andrange-high-exclusive-pread the properties of the range.ccomplex: Acomplextype.ccomplex-ucptreads the upgraded complex part type, which is either the symbolcl:*, or something returned bycl:upgraded-complex-part-type.cmember: Amemberoreqltype.cmember-membersreturns a list of the objects of the type.carray: An array type.carray-simplicityreads:simpleor:complexaccordingly; array types including both are represented as disjunctions.carray-uaetreads the upgraded array element type.carray-dimsreads the dimension specification, which is adimension-specas accepted by thecl:arraycompound type specifier.charset: A subtype ofcharacter.charset-pairsreads the description of the codes included, which is as described above for+standard-charset+in the configuration section.cvalues: Avaluestype.cfunction: Afunctiontype.csatisfies: Asatisfiestype.
Additional classes may be defined by the programmer.
Generic functions
Methods on ctypep and subctypep must be implemented for subclasses of ctype in order for those functions to work correctly.
Methods on subctypep should return the result of (call-next-method) if they cannot determine a conclusive answer, i.e. if they would return (values nil nil). This ensures that all applicable methods can have a shot at giving a definitive answer.
A method on unparse must be defined for ctypes to print correctly. unparse should return a type specifier that could specify the given ctype. This is only used for display purposes, so it doesn't have strict requirements.
The additional generic functions disjointp, negate, conjoin/2, disjoin/2, and subtract may also need methods in order for subctypep and specifier-ctype to work correctly. Particularly, if the conjunction of two types is recognizably (with subctypep) the bottom type, conjoin/2 must return (bot) and disjointp must return definite truth, and similarly with disjunction and (top).
disjointphas the same return value convention assubtypep, and similarly, methods should usecall-next-methodif the answer cannot be determined.disjointpcan be used to determine if two ctypes are completely disjoint:(disjointp (specifier-ctype x) (specifier-ctype y))is equivalent to(subctypep (conjoin (specifier-ctype x) (specifier-ctype y)) (specifier-ctype nil)).negatecomputes the negation of a ctype, i.e. if a ctype is specified byx,(negate that-ctype)is specified by(not x). The default method makes anegationctype. These ctypes do not provide enough information for all functions to work well, e.g. they may result innil nilanswers fromsubctypep. As such, if the negation of a type can be expressed in a better way, a specializing method onnegateshould be defined.conjoin/2anddisjoin/2are the two-argument functions underlyingconjoinanddisjoinrespectively. If no special behavior is defined,conjoinanddisjoinwill createconjunctionanddisjunctiontypes, which do not always provide enough information for precise answers fromsubctypep.subtract, given ctypes specified byxandy, may compute the ctype specified by(and x (not y)). If no special behavior is defined with a method, aconjunctionctype will be made, which is suboptimal.
Extensions
While ctype implements the Common Lisp type system, some users may be interested in defining extensions to said type system. One can do so by defining subclasses of CTYPE and defining methods on some or all of the above functions.
The ext/ directory contains a few example extensions. See the README in that directory for more information.
Custom ctypes can be represented as type specifiers using define-extended-type and accessed using extended-specifier-ctype . See the documentation strings for more information.