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