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