Generic Function: CODE-PART-P

Source

(defgeneric code-part-p (object)
  (:method ((object t)) nil)
  (:method ((object code-part)) t))
Source Context