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