Basic constructor macro for vl-lucidocc-solo structures.
(make-vl-lucidocc-solo [:ctx <ctx>] [:ss <ss>])
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) (:ss)) 'make-vl-lucidocc-solo nil))
Function:
(defun vl-lucidocc-solo (ctx ss) (declare (xargs :guard (and (vl-context1-p ctx) (vl-scopestack-p ss)))) (declare (xargs :guard t)) (let ((__function__ 'vl-lucidocc-solo)) (declare (ignorable __function__)) (b* ((ctx (mbe :logic (vl-context1-fix ctx) :exec ctx)) (ss (mbe :logic (vl-scopestack-fix ss) :exec ss))) (cons :solo (list ctx ss)))))