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