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