Basic constructor macro for transunit-info structures.
(make-transunit-info [:table <table>])
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)) 'make-transunit-info nil))
Function:
(defun transunit-info (table) (declare (xargs :guard (valid-tablep table))) (declare (xargs :guard t)) (let ((__function__ 'transunit-info)) (declare (ignorable __function__)) (b* ((table (mbe :logic (valid-table-fix table) :exec table) )) (list (cons 'table table)))))