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