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