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