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