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