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