Unarchives the slice associated with the given key.
This method should be used when unarchiving an array that is a slice of an already unarchived array or an array that has not yet been unarchived.
the key associated with the slice
the unarchived slice
auto archive = new XmlArchive!(); archive.beginUnarchiving(data); auto slice = unarchiveSlice("slice"); // slice the original array with the help of the unarchived slice
See Implementation
Unarchives the slice associated with the given key.
This method should be used when unarchiving an array that is a slice of an already unarchived array or an array that has not yet been unarchived.