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