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