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