Raw constructor for vl-json-opts-p structures.
Syntax:
(vl-json-opts help readme outfile search-path separate edition strict mem debug)
This is the lowest-level constructor for vl-json-opts-p structures. It simply conses together a structure with the specified fields.
Note: It's generally better to use macros like make-vl-json-opts or change-vl-json-opts instead. These macros lead to more readable and robust code, because you don't have to remember the order of the fields.
The vl-json-opts-p structures we create here are just constructed with ordinary cons. If you want to create honsed structures, see honsed-vl-json-opts instead.
This is an ordinary constructor function introduced by defaggregate.
Function:
(defun vl-json-opts (help readme outfile search-path separate edition strict mem debug) (declare (xargs :guard (and (booleanp help) (booleanp readme) (stringp outfile) (string-listp search-path) (booleanp separate) (vl-edition-p edition) (booleanp strict) (posp mem) (booleanp debug)))) (cons :vl-json-opts (cons (cons 'help help) (cons (cons 'readme readme) (cons (cons 'outfile outfile) (cons (cons 'search-path search-path) (cons (cons 'separate separate) (cons (cons 'edition edition) (cons (cons 'strict strict) (cons (cons 'mem mem) (cons (cons 'debug debug) nil)))))))))))