MoFile.this - multiple declarations

Function MoFile.this

Read from file.

ref this (
  string fileName
) @trusted;

MoFileException if data is in invalid or unsupported format. PluralFormException if plural form expression could not be parsed. FileException on file reading error.

Function MoFile.this

Constructor from data. Data must be immutable and live as long as translated messages are used, because it's used to return strings.

ref this (
  immutable(void)[] data
) pure @safe;

Throws

MoFileException if data is in invalid or unsupported format. PluralFormException if plural form expression could not be parsed.