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