Basic constructor macro for vl-lucidocc-solo structures.
(make-vl-lucidocc-solo [:ctx <ctx>])
This is the usual way to construct vl-lucidocc-solo structures. It simply conses together a structure with the specified fields.
This macro generates a new vl-lucidocc-solo structure from scratch. See also change-vl-lucidocc-solo, which can "change" an existing structure, instead.
This is an ordinary
Macro:
(defmacro make-vl-lucidocc-solo (&rest args) (std::make-aggregate 'vl-lucidocc-solo args '((:ctx)) 'make-vl-lucidocc-solo nil))
Function:
(defun vl-lucidocc-solo (ctx) (declare (xargs :guard (vl-lucidctx-p ctx))) (declare (xargs :guard t)) (let ((__function__ 'vl-lucidocc-solo)) (declare (ignorable __function__)) (b* ((ctx (mbe :logic (vl-lucidctx-fix ctx) :exec ctx))) (cons :solo (list ctx)))))