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