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