Recognizer for binary-info structures.
(binary-infop x) → *
Function:
(defun binary-infop (x) (declare (xargs :guard t)) (let ((__function__ 'binary-infop)) (declare (ignorable __function__)) (and (mbe :logic (and (alistp x) (equal (strip-cars x) '(type))) :exec (fty::alist-with-carsp x '(type))) (b* ((type (cdr (std::da-nth 0 x)))) (typep type)))))
Theorem:
(defthm consp-when-binary-infop (implies (binary-infop x) (consp x)) :rule-classes :compound-recognizer)