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