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