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