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