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