Get the kind (tag) of a boolean-result structure.
(boolean-result-kind x) → kind
Function:
(defun boolean-result-kind$inline (x) (declare (xargs :guard (boolean-resultp x))) (let ((__function__ 'boolean-result-kind)) (declare (ignorable __function__)) (cond ((booleanp x) :ok) (t :err))))
Theorem:
(defthm boolean-result-kind-possibilities (or (equal (boolean-result-kind x) :ok) (equal (boolean-result-kind x) :err)) :rule-classes ((:forward-chaining :trigger-terms ((boolean-result-kind x)))))