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