Archive.unarchiveDouble

Unarchives the value associated with the given id.

  1. double unarchiveDouble(string key)
  2. double unarchiveDouble(Id id)
    interface Archive
    double
    unarchiveDouble
    ()

Parameters

id Id

the id associated with the value

Return Value

Type: double

the unarchived value

Examples

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

Meta