Recognizer for when a given list of terms calls only
For a list
Function:
(defun logic-fns-listp (lst wrld) (declare (xargs :guard (and (plist-worldp wrld) (pseudo-term-listp lst)))) (cond ((endp lst) t) (t (and (logic-fnsp (car lst) wrld) (logic-fns-listp (cdr lst) wrld)))))