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