(vl-propportlist-strip x) → new-x
Function:
(defun vl-propportlist-strip (x) (declare (xargs :guard (vl-propportlist-p x))) (let ((__function__ 'vl-propportlist-strip)) (declare (ignorable __function__)) (b* (((when (atom x)) (b* nil x)) (car (vl-propport-strip (car x))) (cdr (vl-propportlist-strip (cdr x)))) (cons-with-hint car cdr x))))
Theorem:
(defthm vl-propportlist-p-of-vl-propportlist-strip (b* ((new-x (vl-propportlist-strip x))) (vl-propportlist-p new-x)) :rule-classes :rewrite)
Theorem:
(defthm vl-propportlist-strip-of-vl-propportlist-fix-x (equal (vl-propportlist-strip (vl-propportlist-fix x)) (vl-propportlist-strip x)))
Theorem:
(defthm vl-propportlist-strip-vl-propportlist-equiv-congruence-on-x (implies (vl-propportlist-equiv x x-equiv) (equal (vl-propportlist-strip x) (vl-propportlist-strip x-equiv))) :rule-classes :congruence)