ArchiveSDL

An Archive for SDLang.

Members

Functions

loadFromMemory
void loadFromMemory(ubyte[] data)
Undocumented in source. Be warned that the author may not have intended to support it.
loadFromTag
void loadFromTag(Tag tag)
Undocumented in source. Be warned that the author may not have intended to support it.
saveToMemory
const(ubyte[]) saveToMemory()
Undocumented in source. Be warned that the author may not have intended to support it.

Properties

root
ArchiveObject root [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.

Inherited Members

From Archive

saveToMemory
const(ubyte[]) saveToMemory()

Saves the data in Archive.root into memory.

loadFromMemory
void loadFromMemory(ubyte[] data)

Loads the given data and modifies Archive.root to represent this data.

root
ArchiveObject root [@property getter]

The root of the archive's data.

saveToMemoryText
const(char[]) saveToMemoryText()

A helpful alternative to saveToMemory, where the data is casted to a const(char[]), then passed to std.utf.validate, before being returned.

saveToFile
void saveToFile(char[] path)

Saves the archive's data to a file.

loadFromFile
void loadFromFile(char[] path)

Loads the archive's data from a file.

Meta