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