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