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