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