Get the fn-lst field from a te-args.
(te-args->fn-lst x) → fn-lst
This is an ordinary field accessor created by defprod.
Function:
(defun te-args->fn-lst$inline (x) (declare (xargs :guard (te-args-p x))) (declare (xargs :guard t)) (let ((acl2::__function__ 'te-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-te-args->fn-lst (b* ((fn-lst (te-args->fn-lst$inline x))) (func-alistp fn-lst)) :rule-classes :rewrite)
Theorem:
(defthm te-args->fn-lst$inline-of-te-args-fix-x (equal (te-args->fn-lst$inline (te-args-fix x)) (te-args->fn-lst$inline x)))
Theorem:
(defthm te-args->fn-lst$inline-te-args-equiv-congruence-on-x (implies (te-args-equiv x x-equiv) (equal (te-args->fn-lst$inline x) (te-args->fn-lst$inline x-equiv))) :rule-classes :congruence)