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