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