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