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