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