Get the kind (tag) of a fun-adeclor structure.
(fun-adeclor-kind x) → kind
Function:
(defun fun-adeclor-kind$inline (x) (declare (xargs :guard (fun-adeclorp x))) (let ((__function__ 'fun-adeclor-kind)) (declare (ignorable __function__)) (mbe :logic (cond ((or (atom x) (eq (car x) :base)) :base) (t :pointer)) :exec (car x))))
Theorem:
(defthm fun-adeclor-kind-possibilities (or (equal (fun-adeclor-kind x) :base) (equal (fun-adeclor-kind x) :pointer)) :rule-classes ((:forward-chaining :trigger-terms ((fun-adeclor-kind x)))))