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