Recognizer for integerp-of-svex-extn structures.
(integerp-of-svex-extn-p x) → *
Function:
(defun integerp-of-svex-extn-p (x) (declare (xargs :guard t)) (let ((acl2::__function__ 'integerp-of-svex-extn-p)) (declare (ignorable acl2::__function__)) (and (consp x) (b* ((fn (car x)) (arg-len (cdr x))) (and (svex-foreign-fnsym-p fn) (posp arg-len))))))
Theorem:
(defthm consp-when-integerp-of-svex-extn-p (implies (integerp-of-svex-extn-p x) (consp x)) :rule-classes :compound-recognizer)