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