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