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