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