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