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