Function: YACLML-CONSTANT-P

Documentation

Returns T if THING is, as far as yaclml is concerned, a run time constant.

Source

(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