Returns T if THING is, as far as yaclml is concerned, a run time constant.
(defun yaclml-constant-p (thing)
"Returns T if THING is, as far as yaclml is concerned, a run time
constant."
(or (stringp thing)
(characterp thing)
(numberp thing)
(keywordp thing)))Source Context