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