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