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