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