Basic constructor macro for amb?-declor/absdeclor-declor structures.
(make-amb?-declor/absdeclor-declor [:declor <declor>])
This is the usual way to construct amb?-declor/absdeclor-declor structures. It simply conses together a structure with the specified fields.
This macro generates a new amb?-declor/absdeclor-declor structure from scratch. See also change-amb?-declor/absdeclor-declor, which can "change" an existing structure, instead.
This is an ordinary
Macro:
(defmacro make-amb?-declor/absdeclor-declor (&rest args) (std::make-aggregate 'amb?-declor/absdeclor-declor args '((:declor)) 'make-amb?-declor/absdeclor-declor nil))
Function:
(defun amb?-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)))