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