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