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