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