Recognizer for fgl-function-mode bit structures.
(fgl-function-mode-p x) → *
Function:
(defun fgl-function-mode-p (x) (declare (xargs :guard t)) (let ((__function__ 'fgl-function-mode-p)) (declare (ignorable __function__)) (mbe :logic (unsigned-byte-p 6 x) :exec (and (natp x) (< x 64)))))
Theorem:
(defthm fgl-function-mode-p-when-unsigned-byte-p (implies (unsigned-byte-p 6 x) (fgl-function-mode-p x)))
Theorem:
(defthm unsigned-byte-p-when-fgl-function-mode-p (implies (fgl-function-mode-p x) (unsigned-byte-p 6 x)))
Theorem:
(defthm fgl-function-mode-p-compound-recognizer (implies (fgl-function-mode-p x) (natp x)) :rule-classes :compound-recognizer)