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