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