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