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