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