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