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