Basic constructor macro for const-float structures.
(make-const-float )
This is the usual way to construct const-float structures. It simply conses together a structure with the specified fields.
This macro generates a new const-float structure from scratch. See also change-const-float, which can "change" an existing structure, instead.
This is an ordinary
Macro:
(defmacro make-const-float (&rest args) (std::make-aggregate 'const-float args 'nil 'make-const-float nil))
Function:
(defun const-float nil (declare (xargs :guard t)) (let ((__function__ 'const-float)) (declare (ignorable __function__)) (cons :float (list))))