inilike

Reading and writing ini-like files used in some Unix systems and Freedesktop specifications. ini-like is informal name for the file format that look like this:

# Comment
[Group name]
Key=Value
# Comment inside group
AnotherKey=Value

[Another group]
Key=English value
Key[fr_FR]=Francais value

Modules

common
module inilike.common

Common functions for dealing with entries in ini-like file.

file
module inilike.file

Class representation of ini-like file.

range
module inilike.range

Parsing contents of ini-like files via range-based interface.

Public Imports

inilike.common
public import inilike.common;
Undocumented in source.
inilike.range
public import inilike.range;
Undocumented in source.
inilike.file
public import inilike.file;
Undocumented in source.

See Also

Meta