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