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