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