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