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