Is any element of
(any-present-in xs ys) → *
Function:
(defun any-present-in (xs ys) (declare (xargs :guard (and (true-listp xs) (true-listp ys)))) (let ((__function__ 'any-present-in)) (declare (ignorable __function__)) (if (endp xs) nil (if (member-equal (car xs) ys) t (any-present-in (cdr xs) ys)))))