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