the runtime type of the keys
the runtime type of the values
the length of the associative array
the key associated with the associative array
the id associated with the associative array
a callback that performs the archiving of the individual keys and values
int[string] arr = ["a"[] : 1, "b" : 2, "c" : 3]; auto archive = new XmlArchive!(); archive.archive(string.stringof, int.stringof, arr.length, "arr", 0, { // archive the individual keys and values });
archiveAssociativeArrayValue archiveAssociativeArrayKey
Archives an associative array.