Archive.unarchiveBool

Unarchives the value associated with the given id.

  1. bool unarchiveBool(string key, Id id)
  2. bool unarchiveBool(Id id)
    interface Archive
    bool
    unarchiveBool
    ()

Parameters

id Id

the id associated with the value

Return Value

Type: bool

the unarchived value

Examples

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

Meta