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