Skip to content
Snippets Groups Projects
Commit fe62a2a9 authored by pfdietz's avatar pfdietz
Browse files

Add list of names for 'safe' unary predicates -- predicates that can be applied to any lisp object.

parent 035c6be3
No related branches found
No related tags found
No related merge requests found
......@@ -1002,6 +1002,14 @@
(defparameter *cl-symbols-vector*
(make-array (length *cl-symbols*) :initial-contents *cl-symbols*))
;;; Symbols that name unary predicate that can be safely applied to any object
(defparameter *cl-safe-predicates*
'(arrayp atom bit-vector-p characterp compiled-function-p complexp
consp floatp functionp hash-table-p keywordp listp not null
numberp packagep pathnamep random-state-p rationalp readtablep
realp simple-bit-vector-p simple-string-p simple-vector-p
streamp stringp symbolp vectorp))
;;; Symbols classified by their kind in the spec
(defparameter *cl-function-symbols*
'(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment