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