Constructor macro for vl-erange-p structures.
Syntax:
(make-vl-erange [:type <type>] [:left <left>] [:right <right>])
This is our preferred way to construct vl-erange-p structures. It simply conses together a structure with the specified fields.
This macro generates a new vl-erange-p structure from scratch. See also change-vl-erange, which can "change" an existing structure, instead.
The vl-erange-p structures we create here are just constructed with ordinary cons. If you want to create honsed structures, see make-honsed-vl-erange instead.
This is an ordinary
Macro:
(defmacro make-vl-erange (&rest args) (std::make-aggregate 'vl-erange args '((:type) (:left) (:right)) 'make-vl-erange nil))