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