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