Constructor macro for isodata-isomapp structures.
Syntax:
(make-isodata-isomap [:isoname <isoname>]
[:localp <localp>]
[:oldp <oldp>]
[:newp <newp>]
[:forth <forth>]
[:back <back>]
[:stobjp <stobjp>]
[:forth-image <forth-image>]
[:back-image <back-image>]
[:back-of-forth <back-of-forth>]
[:forth-of-back <forth-of-back>]
[:forth-injective <forth-injective>]
[:back-injective <back-injective>]
[:oldp-guard <oldp-guard>]
[:newp-guard <newp-guard>]
[:forth-guard <forth-guard>]
[:back-guard <back-guard>]
[:hints <hints>])
This is our preferred way to construct isodata-isomapp structures. It simply conses together a structure with the specified fields.
This macro generates a new isodata-isomapp structure from scratch. See also change-isodata-isomap, which can "change" an existing structure, instead.
The isodata-isomapp structures we create here are just constructed with ordinary cons. If you want to create honsed structures, see make-honsed-isodata-isomap instead.
This is an ordinary
Macro:
(defmacro make-isodata-isomap (&rest args) (std::make-aggregate 'isodata-isomap args '((:isoname) (:localp) (:oldp) (:newp) (:forth) (:back) (:stobjp) (:forth-image) (:back-image) (:back-of-forth) (:forth-of-back) (:forth-injective) (:back-injective) (:oldp-guard) (:newp-guard) (:forth-guard) (:back-guard) (:hints)) 'make-isodata-isomap nil))