Recognizer for funarg-result structures.
(funarg-resultp acl2::x) → *
Function:
(defun funarg-resultp (acl2::x) (declare (xargs :guard t)) (let ((__function__ 'funarg-resultp)) (declare (ignorable __function__)) (cond ((funargp acl2::x) (b* ((get acl2::x)) (funargp get))) (t (b* ((get acl2::x)) (reserrp get))))))
Theorem:
(defthm consp-when-funarg-resultp (implies (funarg-resultp acl2::x) (consp acl2::x)) :rule-classes :compound-recognizer)