Recognizer for int-value structures.
(int-valuep x) → *
Function:
(defun int-valuep (x) (declare (xargs :guard t)) (let ((__function__ 'int-valuep)) (declare (ignorable __function__)) (and (consp x) (eq (car x) :int) (true-listp (cdr x)) (eql (len (cdr x)) 1) (b* ((int (std::da-nth 0 (cdr x)))) (sbyte32p int)))))
Theorem:
(defthm consp-when-int-valuep (implies (int-valuep x) (consp x)) :rule-classes :compound-recognizer)