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