Archive.unarchiveUint

Unarchives the value associated with the given id.

  1. uint unarchiveUint(string key, Id id)
  2. uint unarchiveUint(Id id)
    interface Archive
    uint
    unarchiveUint
    ()

Parameters

id Id

the id associated with the value

Return Value

Type: uint

the unarchived value

Examples

auto archive = new XmlArchive!();
archive.beginUnarchiving(data);
auto foo = unarchiveBool(0);

Meta