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