Common Lisp Type System

Common Lisp Type System provides two ways for type checking:

We could get the value type by using typep function:

(typep '(1 2 3) 'list) ; return T
Links to this page
#lisp #type-check