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