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