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