Get the kind (tag) of a fun-sort structure.
(fun-sort-kind x) → kind
Function:
(defun fun-sort-kind$inline (x) (declare (xargs :guard (fun-sortp x))) (let ((__function__ 'fun-sort-kind)) (declare (ignorable __function__)) (mbe :logic (cond ((or (atom x) (eq (car x) :standard)) :standard) (t :transition)) :exec (car x))))
Theorem:
(defthm fun-sort-kind-possibilities (or (equal (fun-sort-kind x) :standard) (equal (fun-sort-kind x) :transition)) :rule-classes ((:forward-chaining :trigger-terms ((fun-sort-kind x)))))