A copying macro that lets you create new vl-json-opts-p structures, based on existing structures.
Syntax:
(change-vl-json-opts x [:help <help>] [:readme <readme>] [:outfile <outfile>] [:search-path <search-path>] [:separate <separate>] [:edition <edition>] [:strict <strict>] [:mem <mem>] [:debug <debug>])
This is a sometimes useful alternative to make-vl-json-opts.
It constructs a new vl-json-opts-p structure that is a copy of
This is an ordinary
Macro:
(defmacro change-vl-json-opts (x &rest args) (std::change-aggregate 'vl-json-opts x args '((:help . vl-json-opts->help) (:readme . vl-json-opts->readme) (:outfile . vl-json-opts->outfile) (:search-path . vl-json-opts->search-path) (:separate . vl-json-opts->separate) (:edition . vl-json-opts->edition) (:strict . vl-json-opts->strict) (:mem . vl-json-opts->mem) (:debug . vl-json-opts->debug)) 'change-vl-json-opts 'nil))