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