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