VariantConfig.set

Sets a config value.

  1. void set(string key, T value)
  2. void set(string group, string key, T value)
    struct VariantConfig
    @trusted
    void
    set
    (
    T = string
    )
    (
    const string group
    ,
    const string key
    ,
    const T value
    )

Parameters

group string

Name of the group key belongs to.

key string

Name of the key to set.

value T

The value to be set to.

Meta