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