Modifying constructor for fundef structures.
(change-fundef x
[:name <name>]
[:inputs <inputs>]
[:outputs <outputs>]
[: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 '((:name . fundef->name) (:inputs . fundef->inputs) (:outputs . fundef->outputs) (:body . fundef->body)) 'change-fundef 'nil))