Recognizer for integers and
This is like an option type; when
Function:
(defun maybe-integerp$inline (x) (declare (xargs :guard t)) (or (not x) (integerp x)))
Theorem:
(defthm maybe-integerp-compound-recognizer (equal (maybe-integerp x) (or (integerp x) (not x))) :rule-classes :compound-recognizer)