Modifying constructor for hex-string-content structures.
(change-hex-string-content x [:first <first>] [:rest <rest>])
This is an often useful alternative to make-hex-string-content.
We construct a new hex-string-content structure that is a copy of
This is an ordinary
Macro:
(defmacro change-hex-string-content (x &rest args) (std::change-aggregate 'hex-string-content x args '((:first . hex-string-content->first) (:rest . hex-string-content->rest)) 'change-hex-string-content 'nil))