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