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