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