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