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