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