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