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