Get the kind (tag) of a jcbody-element structure.
(jcbody-element-kind x) → kind
Function:
(defun jcbody-element-kind$inline (x) (declare (xargs :guard (jcbody-element-p x))) (let ((__function__ 'jcbody-element-kind)) (declare (ignorable __function__)) (mbe :logic (cond ((eq (car x) :member) :member) (t :init)) :exec (car x))))
Theorem:
(defthm jcbody-element-kind-possibilities (or (equal (jcbody-element-kind x) :member) (equal (jcbody-element-kind x) :init)) :rule-classes ((:forward-chaining :trigger-terms ((jcbody-element-kind x)))))