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