Get the outputs field from a function-header.
(function-header->outputs x) → outputs
This is an ordinary field accessor created by fty::defprod.
Function:
(defun function-header->outputs$inline (x) (declare (xargs :guard (function-headerp x))) (declare (xargs :guard t)) (let ((__function__ 'function-header->outputs)) (declare (ignorable __function__)) (mbe :logic (b* ((x (and t x))) (typed-variable-list-fix (cdr (std::da-nth 2 x)))) :exec (cdr (std::da-nth 2 x)))))
Theorem:
(defthm typed-variable-listp-of-function-header->outputs (b* ((outputs (function-header->outputs$inline x))) (typed-variable-listp outputs)) :rule-classes :rewrite)
Theorem:
(defthm function-header->outputs$inline-of-function-header-fix-x (equal (function-header->outputs$inline (function-header-fix x)) (function-header->outputs$inline x)))
Theorem:
(defthm function-header->outputs$inline-function-header-equiv-congruence-on-x (implies (function-header-equiv x x-equiv) (equal (function-header->outputs$inline x) (function-header->outputs$inline x-equiv))) :rule-classes :congruence)