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