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