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