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