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