Modifying constructor for vl-union structures.
(change-vl-union x [:members <members>] [:packedp <packedp>] [:pdims <pdims>] [:udims <udims>] [:signedp <signedp>] [:taggedp <taggedp>])
This is an often useful alternative to make-vl-union.
We construct a new vl-union structure that is a copy of
This is an ordinary
Macro:
(defmacro change-vl-union (x &rest args) (std::change-aggregate 'vl-union x args '((:members . vl-union->members) (:packedp . vl-union->packedp) (:pdims . vl-union->pdims) (:udims . vl-union->udims) (:signedp . vl-union->signedp) (:taggedp . vl-union->taggedp)) 'change-vl-union 'remake-vl-union))