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