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