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