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