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