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