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