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