Constructor macro for boundrw-subst-p structures.
Syntax:
(make-boundrw-subst [:lhs <lhs>] [:rhs <rhs>] [:alist <alist>])
This is our preferred way to construct boundrw-subst-p structures. It simply conses together a structure with the specified fields.
This macro generates a new boundrw-subst-p structure from scratch. See also change-boundrw-subst, which can "change" an existing structure, instead.
The boundrw-subst-p structures we create here are just constructed with ordinary cons. If you want to create honsed structures, see make-honsed-boundrw-subst instead.
This is an ordinary
Macro:
(defmacro make-boundrw-subst (&rest args) (std::make-aggregate 'boundrw-subst args '((:lhs) (:rhs) (:alist)) 'make-boundrw-subst nil))