Raw constructor for vl-server-opts-p structures.
Syntax:
(vl-server-opts help readme mem port root public)
This is the lowest-level constructor for vl-server-opts-p structures. It simply conses together a structure with the specified fields.
Note: It's generally better to use macros like make-vl-server-opts or change-vl-server-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-server-opts-p structures we create here are just constructed with ordinary cons. If you want to create honsed structures, see honsed-vl-server-opts instead.
This is an ordinary constructor function introduced by defaggregate.
Function:
(defun vl-server-opts (help readme mem port root public) (declare (xargs :guard (and (booleanp help) (booleanp readme) (posp mem) (posp port) (stringp root) (stringp public)))) (cons :vl-server-opts (cons (cons 'help help) (cons (cons 'readme readme) (cons (cons 'mem mem) (cons (cons 'port port) (cons (cons 'root root) (cons (cons 'public public) nil))))))))