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