the key associated with the array
a callback that performs the unarchiving of the individual elements. length is the length of the archived array
the id associated with the array
auto archive = new XmlArchive!(); archive.beginUnarchiving(data); auto id = archive.unarchiveArray("arr", (size_t length) { auto arr = new int[length]; // pre-allocate the array // unarchive the individual elements of "arr" });
unarchiveArray
Unarchives the value associated with the given key as an array.