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