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