Reader and writer for a variant of the `.ini` file format with `key = value` entries in `[sections]`.

Collection Info

View Source
Collection
core
Path
encoding/ini
Entries
13

Source Files

Constants

1

DEFAULT_OPTIONS #

Source
DEFAULT_OPTIONS :: Options{comment = ";", key_lower_case = false}

Types

3

Procedures

9

iterate #

Source
iterate :: proc(it: ^Iterator) -> (key, value: string, ok: bool) {…}

Returns the raw `key` and `value`. `ok` will be false if no more key=value pairs cannot be found. They key and value may be quoted, which may require the use of `strconv.unquote_string`.