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