Recognizer for indname-result structures.
(indname-result-p x) → *
Function:
(defun indname-result-p (x) (declare (xargs :guard t)) (let ((__function__ 'indname-result-p)) (declare (ignorable __function__)) (and (consp x) (b* ((varname (car x)) (decl (cdr x))) (and (svar-p varname) (wire-p decl))))))
Theorem:
(defthm consp-when-indname-result-p (implies (indname-result-p x) (consp x)) :rule-classes :compound-recognizer)