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