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