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