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