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