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