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