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