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