Get the expr-lst field from a te-args.
(te-args->expr-lst x) → expr-lst
This is an ordinary field accessor created by defprod.
Function:
(defun te-args->expr-lst$inline (x) (declare (xargs :guard (te-args-p x))) (declare (xargs :guard t)) (let ((acl2::__function__ 'te-args->expr-lst)) (declare (ignorable acl2::__function__)) (mbe :logic (b* ((x (and t x))) (pseudo-term-list-fix (cdr (std::da-nth 0 x)))) :exec (cdr (std::da-nth 0 x)))))
Theorem:
(defthm pseudo-term-listp-of-te-args->expr-lst (b* ((expr-lst (te-args->expr-lst$inline x))) (pseudo-term-listp expr-lst)) :rule-classes :rewrite)
Theorem:
(defthm te-args->expr-lst$inline-of-te-args-fix-x (equal (te-args->expr-lst$inline (te-args-fix x)) (te-args->expr-lst$inline x)))
Theorem:
(defthm te-args->expr-lst$inline-te-args-equiv-congruence-on-x (implies (te-args-equiv x x-equiv) (equal (te-args->expr-lst$inline x) (te-args->expr-lst$inline x-equiv))) :rule-classes :congruence)