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