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