Modifying constructor for vl-union structures.
(change-vl-union x
[:packedp <packedp>]
[:signedp <signedp>]
[:taggedp <taggedp>]
[:members <members>]
[:pdims <pdims>]
[:udims <udims>])
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 '((:packedp . vl-union->packedp) (:signedp . vl-union->signedp) (:taggedp . vl-union->taggedp) (:members . vl-union->members) (:pdims . vl-union->pdims) (:udims . vl-union->udims)) 'change-vl-union 'remake-vl-union))