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