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