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