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