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