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