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