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