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