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