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