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