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