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