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