Get the kind (tag) of a lhatom structure.
(lhatom-kind x) → kind
Function:
(defun lhatom-kind$inline (x) (declare (xargs :guard (lhatom-p x))) (let ((__function__ 'lhatom-kind)) (declare (ignorable __function__)) (cond ((eq x :z) :z) (t :var))))
Theorem:
(defthm lhatom-kind-possibilities (or (equal (lhatom-kind x) :z) (equal (lhatom-kind x) :var)) :rule-classes ((:forward-chaining :trigger-terms ((lhatom-kind x)))))