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