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