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