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