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