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