Get the kind (tag) of a vl-paramvalue structure.
(vl-paramvalue-kind x) → kind
Function:
(defun vl-paramvalue-kind$inline (x) (declare (xargs :guard (vl-paramvalue-p x))) (let ((__function__ 'vl-paramvalue-kind)) (declare (ignorable __function__)) (mbe :logic (cond ((eq (car x) :type) :type) (t :expr)) :exec (car x))))
Theorem:
(defthm vl-paramvalue-kind-possibilities (or (equal (vl-paramvalue-kind x) :type) (equal (vl-paramvalue-kind x) :expr)) :rule-classes ((:forward-chaining :trigger-terms ((vl-paramvalue-kind x)))))