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