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