Basic constructor macro for expr-predec structures.
(make-expr-predec [:arg <arg>])
This is the usual way to construct expr-predec structures. It simply conses together a structure with the specified fields.
This macro generates a new expr-predec structure from scratch. See also change-expr-predec, which can "change" an existing structure, instead.
This is an ordinary
Macro:
(defmacro make-expr-predec (&rest args) (std::make-aggregate 'expr-predec args '((:arg)) 'make-expr-predec nil))
Function:
(defun expr-predec (arg) (declare (xargs :guard (exprp arg))) (declare (xargs :guard t)) (let ((__function__ 'expr-predec)) (declare (ignorable __function__)) (b* ((arg (mbe :logic (expr-fix arg) :exec arg))) (cons :predec (list arg)))))