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