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