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