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