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