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