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