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