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