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