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