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