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