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