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