Basic constructor macro for tyspecseq-char structures.
(make-tyspecseq-char )
This is the usual way to construct tyspecseq-char structures. It simply conses together a structure with the specified fields.
This macro generates a new tyspecseq-char structure from scratch. See also change-tyspecseq-char, which can "change" an existing structure, instead.
This is an ordinary
Macro:
(defmacro make-tyspecseq-char (&rest args) (std::make-aggregate 'tyspecseq-char args 'nil 'make-tyspecseq-char nil))
Function:
(defun tyspecseq-char nil (declare (xargs :guard t)) (let ((__function__ 'tyspecseq-char)) (declare (ignorable __function__)) (cons :char (list))))