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