Modifying constructor for vl-propport structures.
(change-vl-propport x
[:name <name>]
[:localp <localp>]
[:dir <dir>]
[:type <type>]
[:arg <arg>]
[:atts <atts>]
[:loc <loc>])
This is an often useful alternative to make-vl-propport.
We construct a new vl-propport structure that is a copy of
This is an ordinary
Macro:
(defmacro change-vl-propport (x &rest args) (std::change-aggregate 'vl-propport x args '((:name . vl-propport->name) (:localp . vl-propport->localp) (:dir . vl-propport->dir) (:type . vl-propport->type) (:arg . vl-propport->arg) (:atts . vl-propport->atts) (:loc . vl-propport->loc)) 'change-vl-propport 'nil))