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