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