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