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