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