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