the id associated with the value
a callback that performs the unarchiving of the individual elements. length is the length of the archived array
auto archive = new XmlArchive!(); archive.beginUnarchiving(data); archive.unarchiveArray(0, (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 id as an array.