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