14 lines
311 B
Plaintext
14 lines
311 B
Plaintext
:sig
|
|
bool config_bool_value(String raw, bool fallback = true)
|
|
|
|
:params
|
|
raw : raw string value
|
|
fallback : value returned for an empty string
|
|
|
|
:see
|
|
>sys
|
|
>config_bool
|
|
|
|
:content
|
|
Parses common configuration booleans. Empty uses the fallback; `0`, `false`, `no`, and `off` are false; other non-empty values are true.
|