Recognizer for vl-keyguts structures.
(vl-keyguts-p x) → *
Function:
(defun vl-keyguts-p (x) (declare (xargs :guard t)) (let ((__function__ 'vl-keyguts-p)) (declare (ignorable __function__)) (and (consp x) (eq (car x) :vl-keyguts) (b* ((type (cdr x))) (vl-keygutstype-p type)))))
Theorem:
(defthm consp-when-vl-keyguts-p (implies (vl-keyguts-p x) (consp x)) :rule-classes :compound-recognizer)