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