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