(vl-pp-propertylist x &key (ps 'ps)) → ps
Function:
(defun vl-pp-propertylist-fn (x ps) (declare (xargs :stobjs (ps))) (declare (xargs :guard (vl-propertylist-p x))) (let ((__function__ 'vl-pp-propertylist)) (declare (ignorable __function__)) (if (atom x) ps (vl-ps-seq (vl-pp-property (car x)) (vl-pp-propertylist (cdr x))))))
Theorem:
(defthm vl-pp-propertylist-fn-of-vl-propertylist-fix-x (equal (vl-pp-propertylist-fn (vl-propertylist-fix x) ps) (vl-pp-propertylist-fn x ps)))
Theorem:
(defthm vl-pp-propertylist-fn-vl-propertylist-equiv-congruence-on-x (implies (vl-propertylist-equiv x x-equiv) (equal (vl-pp-propertylist-fn x ps) (vl-pp-propertylist-fn x-equiv ps))) :rule-classes :congruence)