(svexlist-quotesp x) → *
Function:
(defun svexlist-quotesp (x) (declare (xargs :guard (svexlist-p x))) (let ((__function__ 'svexlist-quotesp)) (declare (ignorable __function__)) (if (atom x) t (and (eq (svex-kind (car x)) :quote) (svexlist-quotesp (cdr x))))))
Theorem:
(defthm svexlist-quotesp-of-svexlist-fix-x (equal (svexlist-quotesp (svexlist-fix x)) (svexlist-quotesp x)))
Theorem:
(defthm svexlist-quotesp-svexlist-equiv-congruence-on-x (implies (svexlist-equiv x x-equiv) (equal (svexlist-quotesp x) (svexlist-quotesp x-equiv))) :rule-classes :congruence)