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