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